Sha256: 47e7e3c9b0c0ac404a8c4e28ae56934c29e80622b6626c26c40cc3fb90c05faf

Contents?: true

Size: 1.17 KB

Versions: 145

Compression:

Stored size: 1.17 KB

Contents

node-asn1 is a library for encoding and decoding ASN.1 datatypes in pure JS.
Currently BER encoding is supported; at some point I'll likely have to do DER.

## Usage

Mostly, if you're *actually* needing to read and write ASN.1, you probably don't
need this readme to explain what and why.  If you have no idea what ASN.1 is,
see this: ftp://ftp.rsa.com/pub/pkcs/ascii/layman.asc

The source is pretty much self-explanatory, and has read/write methods for the
common types out there.

### Decoding

The following reads an ASN.1 sequence with a boolean.

    var Ber = require('asn1').Ber;

    var reader = new Ber.Reader(new Buffer([0x30, 0x03, 0x01, 0x01, 0xff]));

    reader.readSequence();
    console.log('Sequence len: ' + reader.length);
    if (reader.peek() === Ber.Boolean)
      console.log(reader.readBoolean());

### Encoding

The following generates the same payload as above.

    var Ber = require('asn1').Ber;

    var writer = new Ber.Writer();

    writer.startSequence();
    writer.writeBoolean(true);
    writer.endSequence();

    console.log(writer.buffer);

## Installation

    npm install asn1

## License

MIT.

## Bugs

See <https://github.com/mcavage/node-asn1/issues>.

Version data entries

145 entries across 122 versions & 18 rubygems

Version Path
optimacms-0.4.3 spec/dummy/node_modules/asn1/README.md
optimacms-0.4.2 spec/dummy/node_modules/asn1/README.md
locomotivecms-3.4.0 app/javascript/node_modules/asn1/README.md
cortex-0.1.3 spec/dummy/node_modules/asn1/README.md
dragonfly_puppeteer-0.1.0 node_modules/asn1/README.md
affiliator-0.2.1 node_modules/fsevents/node_modules/asn1/README.md
lanes-0.8.0 node_modules/asn1/README.md
lanes-0.8.0 node_modules/fsevents/node_modules/asn1/README.md
trusty-festivity-extension-2.6.3 node_modules/bower/node_modules/request/node_modules/http-signature/node_modules/asn1/README.md
trusty-festivity-extension-2.6.2 node_modules/bower/node_modules/request/node_modules/http-signature/node_modules/asn1/README.md
node-compiler-0.9.1 vendor/node/deps/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/asn1/README.md
node-compiler-0.9.0 vendor/node-v7.2.1/deps/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/asn1/README.md
select_all-rails-0.3.1 node_modules/asn1/README.md
trusty-festivity-extension-2.6.1 node_modules/bower/node_modules/request/node_modules/http-signature/node_modules/asn1/README.md
node-compiler-0.8.0 vendor/node-v7.2.0/deps/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/asn1/README.md
trusty-festivity-extension-2.6 node_modules/bower/node_modules/request/node_modules/http-signature/node_modules/asn1/README.md
node-compiler-0.7.0 vendor/node-v6.9.1/deps/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/asn1/README.md
node-compiler-0.7.0 vendor/node-v7.1.0/deps/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/asn1/README.md
trusty-festivity-extension-2.5.19 node_modules/bower/node_modules/request/node_modules/http-signature/node_modules/asn1/README.md
trusty-festivity-extension-2.5.18 node_modules/bower/node_modules/request/node_modules/http-signature/node_modules/asn1/README.md