mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-11-13 14:29:52 +00:00
25 lines
549 B
C
25 lines
549 B
C
|
/* Sha256.h -- SHA-256 Hash
|
||
|
2010-06-11 : Igor Pavlov : Public domain */
|
||
|
|
||
|
#ifndef __CRYPTO_SHA256_H
|
||
|
#define __CRYPTO_SHA256_H
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#define SHA256_DIGEST_SIZE 32
|
||
|
|
||
|
typedef struct sha256_t
|
||
|
{
|
||
|
uint32_t state[8];
|
||
|
uint64_t count;
|
||
|
unsigned char buffer[64];
|
||
|
} sha256_t;
|
||
|
|
||
|
void sha256_init(sha256_t *p);
|
||
|
void sha256_update(sha256_t *p, const unsigned char *data, size_t size);
|
||
|
void sha256_final(sha256_t *p, unsigned char *digest);
|
||
|
void sha256_hash(unsigned char *buf, const unsigned char *data, size_t size);
|
||
|
|
||
|
#endif
|