| 42 | /// PKCS#8: https://tools.ietf.org/html/rfc5958 |
| 43 | #[derive(Debug)] |
| 44 | pub(crate) struct PemEncodedKey { |
| 45 | content: Vec<u8>, |
| 46 | asn1: Vec<simple_asn1::ASN1Block>, |
| 47 | pem_type: PemType, |
| 48 | standard: Standard, |
| 49 | } |
| 50 | |
| 51 | impl PemEncodedKey { |
| 52 | /// Read the PEM file for later key use |
nothing calls this directly
no outgoing calls
no test coverage detected