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 /* $Id$ */ | |
5 | 4 |
6 #ifndef _KEYHI_H_ | 5 #ifndef _KEYHI_H_ |
7 #define _KEYHI_H_ | 6 #define _KEYHI_H_ |
8 | 7 |
9 #include "plarena.h" | 8 #include "plarena.h" |
10 | 9 |
11 #include "seccomon.h" | 10 #include "seccomon.h" |
12 #include "secoidt.h" | 11 #include "secoidt.h" |
13 #include "secdert.h" | 12 #include "secdert.h" |
14 #include "keythi.h" | 13 #include "keythi.h" |
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 * is also the length of EC private keys and ECDSA signature components | 261 * is also the length of EC private keys and ECDSA signature components |
263 * r and s. | 262 * r and s. |
264 * | 263 * |
265 * Return 0 on failure (unknown EC domain parameters). | 264 * Return 0 on failure (unknown EC domain parameters). |
266 */ | 265 */ |
267 extern int SECKEY_ECParamsToBasePointOrderLen(const SECItem *params); | 266 extern int SECKEY_ECParamsToBasePointOrderLen(const SECItem *params); |
268 | 267 |
269 SEC_END_PROTOS | 268 SEC_END_PROTOS |
270 | 269 |
271 #endif /* _KEYHI_H_ */ | 270 #endif /* _KEYHI_H_ */ |
OLD | NEW |