pfx-load
TypeScript icon, indicating that this package has built-in type declarations

1.2.5 • Public • Published

Pfx Load

Validate your pfx certificate in the easier way possible

How to call?

You just need to to the following:

  const obj = pfxLoad('./path_to_pfx_file', 'some password')

Signature

pfxLoad(certPath: string, passphrase: string, options: PfxOptions): PfxLoad;

  • certpath: Path of .pfx file.
  • passphrase: Password to read the certficate
  • options:
    • showCerts: Default: false, Show or not an Array of certificates
    • showError: Default: true, show or not the error parameter

Interface

The PfxLoad use the following interfaces:

PfxLoad {
  isPasswordOrPfxInvalid?: boolean;
  isPfxOutdated?: boolean;
  willWork?: boolean;
  error?: Error | null
  validCerts?: Array<Cert>;
}

PfxOptions {
  showCerts?: boolean;
  showError?: boolean;
}

I hope you can make a good use of this library. If you'd like to add or complain about something, please create an Issue in our github. Or enter in our community

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.2.5
    91
    • latest

Version History

Package Sidebar

Install

npm i pfx-load

Weekly Downloads

91

Version

1.2.5

License

MIT

Unpacked Size

9.72 kB

Total Files

15

Last publish

Collaborators

  • talesmgodois