openssl: Support of AES-CFB encryption

This commit is contained in:
Andreas Steffen
2021-12-06 12:52:37 +01:00
parent dcaf9b38f3
commit 695a04d146
8 changed files with 158 additions and 3 deletions
+1
View File
@@ -40,6 +40,7 @@ iv_gen_t* iv_gen_create_for_alg(encryption_algorithm_t alg)
case ENCR_SERPENT_CBC:
case ENCR_TWOFISH_CBC:
case ENCR_RC2_CBC:
case ENCR_AES_CFB:
return iv_gen_rand_create();
case ENCR_AES_CTR:
case ENCR_AES_CCM_ICV8: