Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 /*
6 * Provide FIPS validated hashing for applications that only need hashing.
7 * NOTE: mac'ing requires keys and will not work in this interface.
8 * Also NOTE: this only works with Hashing. Only the FIPS interface is enabled.
9 */
11 typedef struct NSSLOWInitContextStr NSSLOWInitContext;
12 typedef struct NSSLOWHASHContextStr NSSLOWHASHContext;
14 NSSLOWInitContext *NSSLOW_Init(void);
15 void NSSLOW_Shutdown(NSSLOWInitContext *context);
16 void NSSLOW_Reset(NSSLOWInitContext *context);
17 NSSLOWHASHContext *NSSLOWHASH_NewContext(
18 NSSLOWInitContext *initContext,
19 HASH_HashType hashType);
20 void NSSLOWHASH_Begin(NSSLOWHASHContext *context);
21 void NSSLOWHASH_Update(NSSLOWHASHContext *context,
22 const unsigned char *buf,
23 unsigned int len);
24 void NSSLOWHASH_End(NSSLOWHASHContext *context,
25 unsigned char *buf,
26 unsigned int *ret, unsigned int len);
27 void NSSLOWHASH_Destroy(NSSLOWHASHContext *context);
28 unsigned int NSSLOWHASH_Length(NSSLOWHASHContext *context);