VanillaJS, Lightweight, Zero-Dependency, x509 encoder and decoder for Private / Public Keypairs and CSRs.
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.
 
 

11 lines
260 B

'use strict';
var X509 = module.exports;
var packer = require('./packers');
var parser = require('./parsers');
Object.keys(parser).forEach(function(key) {
X509[key] = parser[key];
});
Object.keys(packer).forEach(function(key) {
X509[key] = packer[key];
});