PKI Web SDK
PKI WebSDK is a JavaScript library to simplify programming PKI-aware applications in pure JavaScript. The library
is designed to create web based PKI application fully on the client side.
``
require('pkiwebsdk');
// Set your own CA store
const rootCA = '-----CERTIFICATE-----...';
const intermediateCA = '-----CERTIFICATE-----...';
window.PKIWebSDK.setCaStore([rootCA, intermediateCA]);
``