mirror of
https://github.com/azure/login.git
synced 2026-03-15 09:20:56 -04:00
* Bump lodash from 4.17.15 to 4.17.19 (#52) Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.19) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * Bump @actions/core from 1.1.3 to 1.2.6 (#60) Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.1.3 to 1.2.6. - [Release notes](https://github.com/actions/toolkit/releases) - [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * updating node_nodules * updated package-lock Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
51 lines
1.2 KiB
Markdown
51 lines
1.2 KiB
Markdown
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(Buffer.from([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/joyent/node-asn1/issues>.
|