Home | History | Annotate | Download | only in hmac

Lines Matching refs:hmac

15   HMAC support, process a file, Tom St Denis/Dobes Vandermeer
21 HMAC a file
23 @param fname The name of the file you wish to HMAC
26 @param out [out] The HMAC authentication tag
37 hmac_state hmac;
52 if ((err = hmac_init(&hmac, hash, key, keylen)) != CRYPT_OK) {
64 if ((err = hmac_process(&hmac, buf, (unsigned long)x)) != CRYPT_OK) {
75 /* get final hmac */
76 if ((err = hmac_done(&hmac, out, outlen)) != CRYPT_OK) {
91 /* $Source: /cvs/libtom/libtomcrypt/src/mac/hmac/hmac_file.c,v $ */