| 281 | # Names # |
| 282 | |
| 283 | class ASN1F_X509_DirectoryString(ASN1F_CHOICE): |
| 284 | # we include ASN1 bit strings and bmp strings for rare instances of x500 addresses |
| 285 | def __init__(self, name, default, **kwargs): |
| 286 | ASN1F_CHOICE.__init__(self, name, default, |
| 287 | ASN1F_PRINTABLE_STRING, ASN1F_UTF8_STRING, |
| 288 | ASN1F_IA5_STRING, ASN1F_T61_STRING, |
| 289 | ASN1F_UNIVERSAL_STRING, ASN1F_BIT_STRING, |
| 290 | ASN1F_BMP_STRING, |
| 291 | **kwargs) |
| 292 | |
| 293 | |
| 294 | # More details on attributes in PKCS#9 |
no outgoing calls
no test coverage detected
searching dependent graphs…