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 #ifndef _SECOID_H_ | 5 #ifndef _SECOID_H_ |
6 #define _SECOID_H_ | 6 #define _SECOID_H_ |
7 | 7 |
8 #include "utilrename.h" | 8 #include "utilrename.h" |
9 | 9 |
10 /* | 10 /* |
11 * secoid.h - public data structures and prototypes for ASN.1 OID functions | 11 * secoid.h - public data structures and prototypes for ASN.1 OID functions |
12 * | |
13 * $Id$ | |
14 */ | 12 */ |
15 | 13 |
16 #include "plarena.h" | 14 #include "plarena.h" |
17 | 15 |
18 #include "seccomon.h" | 16 #include "seccomon.h" |
19 #include "secoidt.h" | 17 #include "secoidt.h" |
20 #include "secasn1t.h" | 18 #include "secasn1t.h" |
21 | 19 |
22 SEC_BEGIN_PROTOS | 20 SEC_BEGIN_PROTOS |
23 | 21 |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 * algorithm: | 132 * algorithm: |
135 * policy[tag] = (policy[tag] & ~clearBits) | setBits; | 133 * policy[tag] = (policy[tag] & ~clearBits) | setBits; |
136 */ | 134 */ |
137 extern SECStatus | 135 extern SECStatus |
138 NSS_SetAlgorithmPolicy(SECOidTag tag, PRUint32 setBits, PRUint32 clearBits); | 136 NSS_SetAlgorithmPolicy(SECOidTag tag, PRUint32 setBits, PRUint32 clearBits); |
139 | 137 |
140 | 138 |
141 SEC_END_PROTOS | 139 SEC_END_PROTOS |
142 | 140 |
143 #endif /* _SECOID_H_ */ | 141 #endif /* _SECOID_H_ */ |
OLD | NEW |