security/nss/lib/freebl/nsslowhash.h

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:ef8c32b3de5f
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/. */
4
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 */
10
11 typedef struct NSSLOWInitContextStr NSSLOWInitContext;
12 typedef struct NSSLOWHASHContextStr NSSLOWHASHContext;
13
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);

mercurial