mirror of
https://github.com/rdolbeau/VexRiscvBPluginGenerator.git
synced 2025-04-18 18:44:42 -04:00
13 lines
494 B
C
13 lines
494 B
C
#ifndef crypto_hashblocks_H
|
|
#define crypto_hashblocks_H
|
|
|
|
#include "crypto_hashblocks_sha256.h"
|
|
|
|
#define crypto_hashblocks crypto_hashblocks_sha256
|
|
#define crypto_hashblocks_STATEBYTES crypto_hashblocks_sha256_STATEBYTES
|
|
#define crypto_hashblocks_BLOCKBYTES crypto_hashblocks_sha256_BLOCKBYTES
|
|
#define crypto_hashblocks_PRIMITIVE "sha256"
|
|
#define crypto_hashblocks_IMPLEMENTATION crypto_hashblocks_sha256_IMPLEMENTATION
|
|
#define crypto_hashblocks_VERSION crypto_hashblocks_sha256_VERSION
|
|
|
|
#endif
|