Security update to Drupal 8.4.6
[yaffs-website] / node_modules / asn1 / lib / index.js
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
6 var Ber = require('./ber/index');
7
8
9
10 ///--- Exported API
11
12 module.exports = {
13
14   Ber: Ber,
15
16   BerReader: Ber.Reader,
17
18   BerWriter: Ber.Writer
19
20 };