-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support AES in PKCS5 #7038
Comments
It's not just about the test suite, the pkcs5 module just doesn't support PBES2-AES at all right now. |
@jethrogb Good point! Fortunately the PKCS5 module has no direct dependency on DES, so I think adding AES support is as easy as declaring the OID… and adding test cases. |
Hi! |
@zvolin and I were discussing the |
|
The PBES2 tests in
test_suite_pkcs5
all rely on DES, which is deprecated. The PKCS5 module does not support AES, but it's cryptographically agile, so it should be easy to add AES support.The goal of this task is:
test_suite_pkcs5
, add test cases using AES, equivalent to what we have for DES.The text was updated successfully, but these errors were encountered: