summaryrefslogtreecommitdiff
path: root/packages/moxiebox/sha256_wrap.c
blob: 15800c420323599c6c6575182986b4b9d256acfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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);
}