OLD | NEW |
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 Loading... |
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_ */ |
OLD | NEW |