2
0
mirror of https://github.com/therootcompany/acme.js synced 2025-12-23 21:48:40 +00:00
acme.js/asn1/index.js

12 lines
264 B
JavaScript

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