Skip to content

Commit

Permalink
added missing cipher mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
smittals2 committed Jun 3, 2024
1 parent a8a83f0 commit c8ee321
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crypto/cipher_extra/cipher_extra.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ static const struct {
{"3des", "des-ede3-cbc"},
{"aes256", "aes-256-cbc"},
{"aes128", "aes-128-cbc"},
{"id-aes128-gcm", "aes-128-gcm"}
{"id-aes128-gcm", "aes-128-gcm"},
{"id-aes256-gcm", "aes-256-gcm"}
};

const EVP_CIPHER *EVP_get_cipherbynid(int nid) {
Expand Down

0 comments on commit c8ee321

Please sign in to comment.