Create _ASN1Object from OpenSSL numeric ID
(cls, nid)
| 463 | |
| 464 | @classmethod |
| 465 | def fromnid(cls, nid): |
| 466 | """Create _ASN1Object from OpenSSL numeric ID |
| 467 | """ |
| 468 | return super().__new__(cls, *_nid2obj(nid)) |
| 469 | |
| 470 | @classmethod |
| 471 | def fromname(cls, name): |