mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 12:57:53 +00:00
26 lines
426 B
C
26 lines
426 B
C
|
/*
|
||
|
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);
|
||
|
}
|