This commit is contained in:
Zhi Guan
2016-06-06 22:04:44 +02:00
parent 2bf25bd29f
commit 2cb43b7f80
142 changed files with 7768 additions and 1678 deletions

14
demos/gmssl/Makefile Normal file
View File

@@ -0,0 +1,14 @@
all:
cc -o ciphers -Wall ciphers.c -L/usr/local/lib -lcrypto
cc -o sm3 -Wall sm3.c -L/usr/local/lib -lcrypto
cc -o evpsm3 -Wall evpsm3.c -L/usr/local/lib -lcrypto
cc -o hmacsm3 -Wall hmacsm3.c -L/usr/local/lib -lcrypto
clean:
rm -fr a.out *.o
rm -fr ciphers
rm -fr sm3
rm -fr evpsm3
rm -fr hmacsm3