UNPKG

p12-pem

Version:

Extracts the certificate and the private key from a p12/ pkcs12 file

7 lines (6 loc) 202 B
export declare const Name: (name: string) => string; export declare function getPemFromP12(certPath: string, password: string): { pemKey: string; pemCertificate: string; commonName: any; };