]> arthur.barton.de Git - netdata.git/blob - node.d/node_modules/asn1.js
convert identation to spaces
[netdata.git] / node.d / node_modules / asn1.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 };