2015-01-26 14:23:19 +08:00
2014-12-24 15:27:21 +08:00
2014-12-24 15:27:21 +08:00
2014-12-05 22:13:21 +08:00
2014-12-05 22:10:01 +08:00
2014-12-05 16:33:52 +08:00
2014-12-05 22:16:30 +08:00
2015-01-26 14:23:19 +08:00
2014-12-05 22:10:01 +08:00
2014-12-05 22:10:01 +08:00

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);
Description
No description provided
Readme MIT 32 KiB
Languages
C 97.2%
CMake 2.1%
Shell 0.7%