(enc, keyType, objName)
| 501 | // when this is used to parse an input encoding and must be a valid key type if |
| 502 | // used to parse an output encoding. |
| 503 | function parsePublicKeyEncoding(enc, keyType, objName) { |
| 504 | return parseKeyEncoding(enc, keyType, keyType ? true : undefined, objName); |
| 505 | } |
| 506 | |
| 507 | // Parses the private key encoding based on an object. keyType must be undefined |
| 508 | // when this is used to parse an input encoding and must be a valid key type if |
no test coverage detected
searching dependent graphs…