mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-22 14:32:25 +00:00
28 lines
1.1 KiB
C
28 lines
1.1 KiB
C
|
#ifndef crypto_hashblocks_sha256_H
|
||
|
#define crypto_hashblocks_sha256_H
|
||
|
|
||
|
#define crypto_hashblocks_sha256_ref_STATEBYTES 32
|
||
|
#define crypto_hashblocks_sha256_ref_BLOCKBYTES 64
|
||
|
#ifdef __cplusplus
|
||
|
#include <string>
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
extern int crypto_hashblocks_sha256_ref(unsigned char *,const unsigned char *,unsigned long long);
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#define crypto_hashblocks_sha256 crypto_hashblocks_sha256_ref
|
||
|
/* POTATO crypto_hashblocks_sha256_ref crypto_hashblocks_sha256_ref crypto_hashblocks_sha256 */
|
||
|
#define crypto_hashblocks_sha256_STATEBYTES crypto_hashblocks_sha256_ref_STATEBYTES
|
||
|
/* POTATO crypto_hashblocks_sha256_ref_STATEBYTES crypto_hashblocks_sha256_ref crypto_hashblocks_sha256 */
|
||
|
#define crypto_hashblocks_sha256_BLOCKBYTES crypto_hashblocks_sha256_ref_BLOCKBYTES
|
||
|
/* POTATO crypto_hashblocks_sha256_ref_BLOCKBYTES crypto_hashblocks_sha256_ref crypto_hashblocks_sha256 */
|
||
|
#define crypto_hashblocks_sha256_IMPLEMENTATION "crypto_hashblocks/sha256/ref"
|
||
|
#ifndef crypto_hashblocks_sha256_ref_VERSION
|
||
|
#define crypto_hashblocks_sha256_ref_VERSION "-"
|
||
|
#endif
|
||
|
#define crypto_hashblocks_sha256_VERSION crypto_hashblocks_sha256_ref_VERSION
|
||
|
|
||
|
#endif
|