SHA512_standalone.h (216B)
1 /* SHA-512 standalone header for Ed25519 */ 2 #ifndef SHA512_STANDALONE_H 3 #define SHA512_STANDALONE_H 4 5 #include <stdint.h> 6 #include <stddef.h> 7 8 void sha512(const uint8_t *data, size_t len, uint8_t digest[64]); 9 10 #endif