1 #ifndef __HASH_SM3_H__ 2 #define __HASH_SM3_H__ 3 4 #ifdef __cplusplus 5 extern "C" { 6 #endif 7 8 9 int rk_hash_sm3(const unsigned char *in, unsigned int in_len, 10 unsigned char *out, unsigned int *out_len); 11 12 13 #ifdef __cplusplus 14 } 15 #endif 16 17 #endif /* sm3.h */ 18