Newer
Older
WickedDocs / Crypto / Hash / SHA256.h
@John Ryland John Ryland on 28 Nov 2015 152 bytes Add crypto functions
#ifndef SHA256_H
#define SHA256_H


#include <stdint.h>


void sha256(const uint8_t* message, uint64_t length, uint32_t hash[8]);


#endif // SHA256_H