選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

25 行
242 B

  1. include_directories(. .. ../../include)
  2. add_library(
  3. ec
  4. OBJECT
  5. ec.c
  6. oct.c
  7. simple.c
  8. ec_montgomery.c
  9. wnaf.c
  10. ec_key.c
  11. ec_asn1.c
  12. ec_error.c
  13. )
  14. add_executable(
  15. example_mul
  16. example_mul.c
  17. )
  18. target_link_libraries(example_mul crypto)