source: trip-planner-front/node_modules/asn1/lib/index.js@ e29cc2e

Last change on this file since e29cc2e was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 320 bytes
Line 
1// Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
2
3// If you have no idea what ASN.1 or BER is, see this:
4// ftp://ftp.rsa.com/pub/pkcs/ascii/layman.asc
5
6var Ber = require('./ber/index');
7
8
9
10// --- Exported API
11
12module.exports = {
13
14 Ber: Ber,
15
16 BerReader: Ber.Reader,
17
18 BerWriter: Ber.Writer
19
20};
Note: See TracBrowser for help on using the repository browser.