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 _ALGHMACCT_H_ | 5 #ifndef _HMACCT_H_ |
6 #define _ALGHMACCT_H_ | 6 #define _HMACCT_H_ |
7 | 7 |
8 SEC_BEGIN_PROTOS | 8 SEC_BEGIN_PROTOS |
9 | 9 |
10 extern SECStatus HMAC_ConstantTime( | 10 extern SECStatus HMAC_ConstantTime( |
11 unsigned char *result, | 11 unsigned char *result, |
12 unsigned int *resultLen, | 12 unsigned int *resultLen, |
13 unsigned int maxResultLen, | 13 unsigned int maxResultLen, |
14 const SECHashObject *hashObj, | 14 const SECHashObject *hashObj, |
15 const unsigned char *secret, | 15 const unsigned char *secret, |
16 unsigned int secretLen, | 16 unsigned int secretLen, |
(...skipping 12 matching lines...) Expand all Loading... |
29 unsigned int secretLen, | 29 unsigned int secretLen, |
30 const unsigned char *header, | 30 const unsigned char *header, |
31 unsigned int headerLen, | 31 unsigned int headerLen, |
32 const unsigned char *body, | 32 const unsigned char *body, |
33 unsigned int bodyLen, | 33 unsigned int bodyLen, |
34 unsigned int bodyTotalLen); | 34 unsigned int bodyTotalLen); |
35 | 35 |
36 SEC_END_PROTOS | 36 SEC_END_PROTOS |
37 | 37 |
38 #endif | 38 #endif |
OLD | NEW |