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

Side by Side Diff: nss/lib/util/ciferfam.h

Issue 16285003: Remove CVS keywords from NSS source files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Created 7 years, 6 months 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 | « nss/lib/util/base64.h ('k') | nss/lib/util/hasht.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 /* This Source Code Form is subject to the terms of the Mozilla Public 1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this 2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4 4
5 /* 5 /*
6 * ciferfam.h - cipher familie IDs used for configuring ciphers for export 6 * ciferfam.h - cipher familie IDs used for configuring ciphers for export
7 * control 7 * control
8 *
9 * $Id$
10 */ 8 */
11 9
12 #ifndef _CIFERFAM_H_ 10 #ifndef _CIFERFAM_H_
13 #define _CIFERFAM_H_ 11 #define _CIFERFAM_H_
14 12
15 #include "utilrename.h" 13 #include "utilrename.h"
16 /* Cipher Suite "Families" */ 14 /* Cipher Suite "Families" */
17 #define CIPHER_FAMILY_PKCS12 "PKCS12" 15 #define CIPHER_FAMILY_PKCS12 "PKCS12"
18 #define CIPHER_FAMILY_SMIME "SMIME" 16 #define CIPHER_FAMILY_SMIME "SMIME"
19 #define CIPHER_FAMILY_SSL2 "SSLv2" 17 #define CIPHER_FAMILY_SSL2 "SSLv2"
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 #define PKCS12_RC2_CBC_128 (CIPHER_FAMILYID_PKCS12 | 0002) 50 #define PKCS12_RC2_CBC_128 (CIPHER_FAMILYID_PKCS12 | 0002)
53 #define PKCS12_RC4_40 (CIPHER_FAMILYID_PKCS12 | 0011) 51 #define PKCS12_RC4_40 (CIPHER_FAMILYID_PKCS12 | 0011)
54 #define PKCS12_RC4_128 (CIPHER_FAMILYID_PKCS12 | 0012) 52 #define PKCS12_RC4_128 (CIPHER_FAMILYID_PKCS12 | 0012)
55 #define PKCS12_DES_56 (CIPHER_FAMILYID_PKCS12 | 0021) 53 #define PKCS12_DES_56 (CIPHER_FAMILYID_PKCS12 | 0021)
56 #define PKCS12_DES_EDE3_168 (CIPHER_FAMILYID_PKCS12 | 0022) 54 #define PKCS12_DES_EDE3_168 (CIPHER_FAMILYID_PKCS12 | 0022)
57 55
58 /* SMIME version numbers are negative, to avoid colliding with SSL versions */ 56 /* SMIME version numbers are negative, to avoid colliding with SSL versions */
59 #define SMIME_LIBRARY_VERSION_1_0 -0x0100 57 #define SMIME_LIBRARY_VERSION_1_0 -0x0100
60 58
61 #endif /* _CIFERFAM_H_ */ 59 #endif /* _CIFERFAM_H_ */
OLDNEW
« no previous file with comments | « nss/lib/util/base64.h ('k') | nss/lib/util/hasht.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698