diff options
Diffstat (limited to 'packages/moxiebox/sha256_wrap.c')
-rw-r--r-- | packages/moxiebox/sha256_wrap.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/packages/moxiebox/sha256_wrap.c b/packages/moxiebox/sha256_wrap.c new file mode 100644 index 00000000..15800c42 --- /dev/null +++ b/packages/moxiebox/sha256_wrap.c @@ -0,0 +1,25 @@ +/* + Wrapper around moxiebox'es implementation of SHA256 digest that + mimics the API of the OpenSSL implementation. +*/ + +#include "sha.h" +#include "../runtime/sha256.c" + +void +SHA256_Init(SHA256_CTX *ctx) +{ + sha256_init(ctx); +} + +void +SHA256_Update(SHA256_CTX *ctx, const void *data, size_t len) +{ + sha256_update(ctx, data, len); +} + +void +SHA256_Final(unsigned char *md, SHA256_CTX *ctx) +{ + sha256_final(ctx, md); +} |