You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

32 line
306 B

  1. include_directories(. .. ../../include)
  2. add_library(
  3. evp
  4. OBJECT
  5. algorithm.c
  6. asn1.c
  7. digestsign.c
  8. evp.c
  9. evp_ctx.c
  10. evp_error.c
  11. p_ec.c
  12. p_ec_asn1.c
  13. p_hmac.c
  14. p_hmac_asn1.c
  15. p_rsa.c
  16. p_rsa_asn1.c
  17. pbkdf.c
  18. sign.c
  19. )
  20. add_executable(
  21. evp_test
  22. evp_test.c
  23. )
  24. target_link_libraries(evp_test crypto)