Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(215)

Side by Side Diff: crypto/third_party/nss/chromium-blapit.h

Issue 8538025: Rename crypto/third_party/nss headers to avoid mixups. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « crypto/third_party/nss/chromium-blapi.h ('k') | crypto/third_party/nss/chromium-sha256.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * blapit.h - public data structures for the crypto library 2 * blapit.h - public data structures for the crypto library
3 * 3 *
4 * ***** BEGIN LICENSE BLOCK ***** 4 * ***** BEGIN LICENSE BLOCK *****
5 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 5 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
6 * 6 *
7 * The contents of this file are subject to the Mozilla Public License Version 7 * The contents of this file are subject to the Mozilla Public License Version
8 * 1.1 (the "License"); you may not use this file except in compliance with 8 * 1.1 (the "License"); you may not use this file except in compliance with
9 * the License. You may obtain a copy of the License at 9 * the License. You may obtain a copy of the License at
10 * http://www.mozilla.org/MPL/ 10 * http://www.mozilla.org/MPL/
(...skipping 22 matching lines...) Expand all
33 * under the terms of either the GPL or the LGPL, and not to allow others to 33 * under the terms of either the GPL or the LGPL, and not to allow others to
34 * use your version of this file under the terms of the MPL, indicate your 34 * use your version of this file under the terms of the MPL, indicate your
35 * decision by deleting the provisions above and replace them with the notice 35 * decision by deleting the provisions above and replace them with the notice
36 * and other provisions required by the GPL or the LGPL. If you do not delete 36 * and other provisions required by the GPL or the LGPL. If you do not delete
37 * the provisions above, a recipient may use your version of this file under 37 * the provisions above, a recipient may use your version of this file under
38 * the terms of any one of the MPL, the GPL or the LGPL. 38 * the terms of any one of the MPL, the GPL or the LGPL.
39 * 39 *
40 * ***** END LICENSE BLOCK ***** */ 40 * ***** END LICENSE BLOCK ***** */
41 /* $Id: blapit.h,v 1.20 2007/02/28 19:47:37 rrelyea%redhat.com Exp $ */ 41 /* $Id: blapit.h,v 1.20 2007/02/28 19:47:37 rrelyea%redhat.com Exp $ */
42 42
43 #ifndef _BLAPIT_H_ 43 #ifndef CRYPTO_THIRD_PARTY_NSS_CHROMIUM_BLAPIT_H_
44 #define _BLAPIT_H_ 44 #define CRYPTO_THIRD_PARTY_NSS_CHROMIUM_BLAPIT_H_
45 45
46 #include "base/third_party/nspr/prtypes.h" 46 #include "base/third_party/nspr/prtypes.h"
47 47
48 /* 48 /*
49 ** A status code. Status's are used by procedures that return status 49 ** A status code. Status's are used by procedures that return status
50 ** values. Again the motivation is so that a compiler can generate 50 ** values. Again the motivation is so that a compiler can generate
51 ** warnings when return values are wrong. Correct testing of status codes: 51 ** warnings when return values are wrong. Correct testing of status codes:
52 ** 52 **
53 ** SECStatus rv; 53 ** SECStatus rv;
54 ** rv = some_function (some_argument); 54 ** rv = some_function (some_argument);
(...skipping 26 matching lines...) Expand all
81 */ 81 */
82 82
83 struct SHA256ContextStr ; 83 struct SHA256ContextStr ;
84 struct SHA512ContextStr ; 84 struct SHA512ContextStr ;
85 85
86 typedef struct SHA256ContextStr SHA256Context; 86 typedef struct SHA256ContextStr SHA256Context;
87 typedef struct SHA512ContextStr SHA512Context; 87 typedef struct SHA512ContextStr SHA512Context;
88 /* SHA384Context is really a SHA512ContextStr. This is not a mistake. */ 88 /* SHA384Context is really a SHA512ContextStr. This is not a mistake. */
89 typedef struct SHA512ContextStr SHA384Context; 89 typedef struct SHA512ContextStr SHA384Context;
90 90
91 #endif /* _BLAPIT_H_ */ 91 #endif /* CRYPTO_THIRD_PARTY_NSS_CHROMIUM_BLAPIT_H_ */
OLDNEW
« no previous file with comments | « crypto/third_party/nss/chromium-blapi.h ('k') | crypto/third_party/nss/chromium-sha256.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698