?? hash.c
字號(hào):
#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;}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -