📄 hash.c
字号:
#include "crypto_hash.h"#include "KeccakNISTInterface.h"int crypto_hash(unsigned char *out, const unsigned char *in, unsigned long long inlen){ if (Hash(crypto_hash_BYTES*8, in, inlen*8, out) == SUCCESS) return 0; return -1;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -