UNPKG

@indrajala/asn1der

Version:

parse ASN.1 DER structures

18 lines 639 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const chai_1 = require("chai"); const asn1der_1 = require("../asn1der"); // import { authorizationListLookup } from '../model/google'; const google_1 = require("./data/pem/google"); describe('play', () => { it('should work', () => { const root = asn1der_1.parseDER(asn1der_1.pemToDER(google_1.rsaTEE[0]))[0]; // root // .summary(4, authorizationListLookup()) // .forEach(line => console.log(line)); chai_1.expect(true) .to .equal(true); }); }); //# sourceMappingURL=play.spec.js.map