You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
399 B

/// <reference types="node" />
import { pki } from 'node-forge';
export declare function getP12CertFingerprint(p12Buffer: Buffer | string, passwordRaw: string | null): string;
export declare function findP12CertSerialNumber(p12Buffer: Buffer | string, passwordRaw: string | null): string;
export declare function getCertData(p12Buffer: Buffer | string, passwordRaw: string | null): pki.Certificate;