- Added CMake makefiles as alternative to regular Makefiles.
- Added preliminary Code Coverage tests for AES, ARC4, Base64, MPI, SHA-family, MD-family and HMAC-SHA-family.
This commit is contained in:
parent
48eab260e9
commit
367dae44b2
27 changed files with 4201 additions and 0 deletions
15
library/CMakeLists.txt
Normal file
15
library/CMakeLists.txt
Normal file
|
@ -0,0 +1,15 @@
|
|||
add_library(polarssl STATIC
|
||||
base64.c rsa.c timing.c havege.c
|
||||
md5.c
|
||||
ssl_cli.c
|
||||
bignum.c debug.c sha1.c x509parse.c
|
||||
aes.c net.c ssl_srv.c
|
||||
camellia.c des.c md2.c sha2.c xtea.c
|
||||
arc4.c
|
||||
padlock.c
|
||||
ssl_tls.c
|
||||
certs.c
|
||||
dhm.c
|
||||
md4.c
|
||||
sha4.c
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue