security/nss/lib/freebl/nsslowhash.h

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     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); 

mercurial