mirror of
https://github.com/albertobsd/keyhunt.git
synced 2025-04-05 02:20:21 +02:00
18 lines
394 B
C
18 lines
394 B
C
/*
|
|
SHA256 implementation, header file.
|
|
|
|
This implementation was written by Kent "ethereal" Williams-King and is
|
|
hereby released into the public domain. Do what you wish with it.
|
|
|
|
No guarantees as to the correctness of the implementation are provided.
|
|
*/
|
|
|
|
#ifndef SHA256_H
|
|
#define SHA256_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void sha256(const void *data, uint64_t len, void *output);
|
|
|
|
#endif
|