15 lines
175 B
C
15 lines
175 B
C
#ifndef LIBGCL_H_
|
|
#define LIBGCL_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
int sm3(void *data, int dataLen, void *digest);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // LIBGCL_H_
|