Skip to content

Commit

Permalink
Fix SKI finding codes
Browse files Browse the repository at this point in the history
  • Loading branch information
CBonnell committed Dec 15, 2023
1 parent 5049df0 commit bde3fc1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions pkilint/pkix/certificate/certificate_key.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,17 +123,17 @@ class SubjectKeyIdentifierValidator(validation.Validator):

VALIDATION_RFC7093_METHOD_1 = validation.ValidationFinding(
validation.ValidationFindingSeverity.INFO,
'pkix_subject_key_identifier_rfc7093_method_1_identified'
'pkix.subject_key_identifier_rfc7093_method_1_identified'
)

VALIDATION_RFC7093_METHOD_2 = validation.ValidationFinding(
validation.ValidationFindingSeverity.INFO,
'pkix_subject_key_identifier_rfc7093_method_2_identified'
'pkix.subject_key_identifier_rfc7093_method_2_identified'
)

VALIDATION_RFC7093_METHOD_3 = validation.ValidationFinding(
validation.ValidationFindingSeverity.INFO,
'pkix_subject_key_identifier_rfc7093_method_3_identified'
'pkix.subject_key_identifier_rfc7093_method_3_identified'
)

def __init__(self):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ AZvTbDmzq9nfzN4wz4KGkMuy0Ab7nuguoYht4LNEZG/M+uz3eh6rCEzoxIoy8w==
-----END CERTIFICATE-----

node_path,validator,severity,code,message
certificate.tbsCertificate.extensions.3.extnValue.subjectKeyIdentifier,SubjectKeyIdentifierValidator,INFO,pkix_subject_key_identifier_rfc7093_method_1_identified
certificate.tbsCertificate.extensions.3.extnValue.subjectKeyIdentifier,SubjectKeyIdentifierValidator,INFO,pkix.subject_key_identifier_rfc7093_method_1_identified
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ kie/jPNYkFvMzOaawwPAhG9R6G2ZB7cTOuG0Uu863Hkh5XX2oAo=
-----END CERTIFICATE-----

node_path,validator,severity,code,message
certificate.tbsCertificate.extensions.3.extnValue.subjectKeyIdentifier,SubjectKeyIdentifierValidator,INFO,pkix_subject_key_identifier_rfc7093_method_2_identified,
certificate.tbsCertificate.extensions.3.extnValue.subjectKeyIdentifier,SubjectKeyIdentifierValidator,INFO,pkix.subject_key_identifier_rfc7093_method_2_identified,
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ kie/jPNYkFvMzOaawwPAhG9R6G2ZB7cTOuG0Uu863Hkh5XX2oAo=
-----END CERTIFICATE-----

node_path,validator,severity,code,message
certificate.tbsCertificate.extensions.3.extnValue.subjectKeyIdentifier,SubjectKeyIdentifierValidator,INFO,pkix_subject_key_identifier_rfc7093_method_3_identified,
certificate.tbsCertificate.extensions.3.extnValue.subjectKeyIdentifier,SubjectKeyIdentifierValidator,INFO,pkix.subject_key_identifier_rfc7093_method_3_identified,

0 comments on commit bde3fc1

Please sign in to comment.