| 453 | # Extensions # |
| 454 | |
| 455 | class X509_ExtAuthorityKeyIdentifier(ASN1_Packet): |
| 456 | ASN1_codec = ASN1_Codecs.BER |
| 457 | ASN1_root = ASN1F_SEQUENCE( |
| 458 | ASN1F_optional( |
| 459 | ASN1F_STRING("keyIdentifier", b"\xff" * 20, |
| 460 | implicit_tag=0x80)), |
| 461 | ASN1F_optional( |
| 462 | ASN1F_SEQUENCE_OF("authorityCertIssuer", None, |
| 463 | X509_GeneralName, |
| 464 | implicit_tag=0xa1)), |
| 465 | ASN1F_optional( |
| 466 | ASN1F_INTEGER("authorityCertSerialNumber", None, |
| 467 | implicit_tag=0x82))) |
| 468 | |
| 469 | |
| 470 | class X509_ExtSubjectDirectoryAttributes(ASN1_Packet): |
nothing calls this directly
no test coverage detected
searching dependent graphs…