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.
 
 
 
 

22 lines
342 B

  1. #ifndef __set2_runner__
  2. #define __set2_runner__
  3. void pkcs7_test();
  4. void cbc_decrypt_test();
  5. void cbc_enc_dec_test();
  6. //void encode_decode_openssl();
  7. struct SET2
  8. {
  9. static void run()
  10. {
  11. pkcs7_test();
  12. cbc_enc_dec_test();
  13. cbc_decrypt_test();
  14. //encode_decode_openssl();
  15. }
  16. };
  17. #endif// __set2_runner__