| 1274 | |
| 1275 | |
| 1276 | class PA_PK_AS_REQ(ASN1_Packet): |
| 1277 | ASN1_codec = ASN1_Codecs.BER |
| 1278 | ASN1_root = ASN1F_SEQUENCE( |
| 1279 | ASN1F_STRING_ENCAPS( |
| 1280 | "signedAuthpack", |
| 1281 | CMS_ContentInfo(), |
| 1282 | CMS_ContentInfo, |
| 1283 | implicit_tag=0x80, |
| 1284 | ), |
| 1285 | ASN1F_optional( |
| 1286 | ASN1F_SEQUENCE_OF( |
| 1287 | "trustedCertifiers", |
| 1288 | None, |
| 1289 | ExternalPrincipalIdentifier, |
| 1290 | explicit_tag=0xA1, |
| 1291 | ), |
| 1292 | ), |
| 1293 | ASN1F_optional( |
| 1294 | ASN1F_STRING("kdcPkId", "", implicit_tag=0xA2), |
| 1295 | ), |
| 1296 | ) |
| 1297 | |
| 1298 | |
| 1299 | _PADATA_CLASSES[16] = PA_PK_AS_REQ |
no test coverage detected
searching dependent graphs…