asn1lib 0.6.3 asn1lib: ^0.6.3 copied to clipboard
An ASN1 parser library for Dart. Encodes / decodes from ASN1 Objects to BER bytes
ASN.1 Parser for Dart #
Encodes & decodes ASN1 using BER encoding.
There is just enough implementation here to get an LDAP client library working. Contributions welcome.
Samples #
Encoding #
import 'package:asn1lib/asn1lib.dart';
var s = ASN1Sequence();
s.add(ASN1Integer(23));
s.add(ASN1OctetString('This is a test'));
s.add(ASN1Boolean(true));
// GET the BER Stream
var bytes = s.encodedBytes;
Decoding #
import 'package:asn1lib/asn1lib.dart';
// e.g. bytes from the Encoding Example
var p = ASN1Parser(bytes);
var s2 = p.nextObject();
// s2 is a sequence...