Parse a DER encoded X.509 name (the inverse of ``public_bytes``).
(cls, data: bytes)
| 322 | |
| 323 | @classmethod |
| 324 | def from_bytes(cls, data: bytes) -> Name: |
| 325 | """ |
| 326 | Parse a DER encoded X.509 name (the inverse of ``public_bytes``). |
| 327 | """ |
| 328 | return rust_x509.parse_name_bytes(data) |
| 329 | |
| 330 | def rfc4514_string( |
| 331 | self, attr_name_overrides: _OidNameMap | None = None |
no outgoing calls