Skip to content
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

Remove ML-KEM from sig alg list #146

Merged
merged 1 commit into from
Jan 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions pkilint/pkix/algorithm.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from pyasn1_alt_modules import rfc4055, rfc5280, rfc5480, rfc8410

from pkilint import validation, document
from pkilint.nist.asn1 import fips_203, fips_204, fips_205
from pkilint.nist.asn1 import fips_204, fips_205

SIGNATURE_ALGORITHM_IDENTIFIER_MAPPINGS = {
**{
Expand Down Expand Up @@ -37,7 +37,6 @@
rfc4055.sha512WithRSAEncryption,
)
},
**fips_203.ALGORITHM_OID_TO_PARAMETER_MAPPINGS,
**fips_204.ALGORITHM_OID_TO_PARAMETER_MAPPINGS,
**fips_205.ALGORITHM_OID_TO_PARAMETER_MAPPINGS,
rfc4055.id_RSASSA_PSS: rfc4055.RSASSA_PSS_params(),
Expand Down
Loading