VexRiscvBPluginGenerator/sha512standalone-rv32/crypto_hashblocks_sha512.h
2020-11-11 12:29:17 -05:00

24 lines
879 B
C

#ifndef crypto_hashblocks_sha512_H
#define crypto_hashblocks_sha512_H
#define crypto_hashblocks_sha512_inplace_STATEBYTES 64
#define crypto_hashblocks_sha512_inplace_BLOCKBYTES 128
#ifdef __cplusplus
extern "C" {
#endif
extern int crypto_hashblocks_sha512_inplace(unsigned char *,const unsigned char *,unsigned long long);
#ifdef __cplusplus
}
#endif
#define crypto_hashblocks_sha512 crypto_hashblocks_sha512_inplace
#define crypto_hashblocks_sha512_STATEBYTES crypto_hashblocks_sha512_inplace_STATEBYTES
#define crypto_hashblocks_sha512_BLOCKBYTES crypto_hashblocks_sha512_inplace_BLOCKBYTES
#define crypto_hashblocks_sha512_IMPLEMENTATION "crypto_hashblocks/sha512/inplace"
#ifndef crypto_hashblocks_sha512_inplace_VERSION
#define crypto_hashblocks_sha512_inplace_VERSION "-"
#endif
#define crypto_hashblocks_sha512_VERSION crypto_hashblocks_sha512_inplace_VERSION
#endif