Skip to content

Standalone implementation of `HMAC()` + `EVP_sha1()` in `OpenSSL`

License

Notifications You must be signed in to change notification settings

Akagi201/hmac-sha1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hmac-sha1

Build Status

Standalone implementation of HMAC() + EVP_sha1() in OpenSSL

API

#include "hmac/hmac.h"

void hmac_sha1(const uint8_t *k,   /* secret key */
        size_t lk,  /* length of the key in bytes */
        const uint8_t *d,   /* data */
        size_t ld,  /* length of data in bytes */
        uint8_t *out, /* output buffer, at least "t" bytes */
        size_t *t);

About

Standalone implementation of `HMAC()` + `EVP_sha1()` in `OpenSSL`

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published