├── LICENSE ├── README.md ├── sm2_cipher_error_codes.h ├── sm2_create_key_pair.c ├── sm2_create_key_pair.h ├── sm2_sign_and_verify.c ├── sm2_sign_and_verify.h ├── sm3_with_preprocess.c ├── sm3_with_preprocess.h ├── test_demo.c ├── test_sm2_sign_and_verify.c └── test_sm2_sign_and_verify.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greendow/SM2-signature-creation-and-verification/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greendow/SM2-signature-creation-and-verification/HEAD/README.md -------------------------------------------------------------------------------- /sm2_cipher_error_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greendow/SM2-signature-creation-and-verification/HEAD/sm2_cipher_error_codes.h -------------------------------------------------------------------------------- /sm2_create_key_pair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greendow/SM2-signature-creation-and-verification/HEAD/sm2_create_key_pair.c -------------------------------------------------------------------------------- /sm2_create_key_pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greendow/SM2-signature-creation-and-verification/HEAD/sm2_create_key_pair.h -------------------------------------------------------------------------------- /sm2_sign_and_verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greendow/SM2-signature-creation-and-verification/HEAD/sm2_sign_and_verify.c -------------------------------------------------------------------------------- /sm2_sign_and_verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greendow/SM2-signature-creation-and-verification/HEAD/sm2_sign_and_verify.h -------------------------------------------------------------------------------- /sm3_with_preprocess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greendow/SM2-signature-creation-and-verification/HEAD/sm3_with_preprocess.c -------------------------------------------------------------------------------- /sm3_with_preprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greendow/SM2-signature-creation-and-verification/HEAD/sm3_with_preprocess.h -------------------------------------------------------------------------------- /test_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greendow/SM2-signature-creation-and-verification/HEAD/test_demo.c -------------------------------------------------------------------------------- /test_sm2_sign_and_verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greendow/SM2-signature-creation-and-verification/HEAD/test_sm2_sign_and_verify.c -------------------------------------------------------------------------------- /test_sm2_sign_and_verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greendow/SM2-signature-creation-and-verification/HEAD/test_sm2_sign_and_verify.h --------------------------------------------------------------------------------