| 344 | |
| 345 | |
| 346 | class ASN1F_STRING(ASN1F_field[str, ASN1_STRING]): |
| 347 | ASN1_tag = ASN1_Class_UNIVERSAL.STRING |
| 348 | |
| 349 | def randval(self): |
| 350 | # type: () -> RandString |
| 351 | return RandString(RandNum(0, 1000)) |
| 352 | |
| 353 | |
| 354 | class ASN1F_NULL(ASN1F_INTEGER): |
no outgoing calls
no test coverage detected