Files
simple_asn1/Cargo.toml
Flakebi b678c70508 Reduce num dependencies, improve class implementation and add explicit tags
The default datatypes always have Universal as their class. If we
encounter another class while parsing, it is a tagged block.

I am not sure how (and if at all) we can distinguish explicitly and
implicitly tagged data. For now they should be parsed as unknown (or
explicit if they are a valid ASN.1 block).
2018-12-09 12:01:01 +01:00

19 lines
431 B
TOML

[package]
name = "simple_asn1"
version = "0.2.1"
authors = ["Adam Wick <awick@uhsure.com>"]
description = "A simple DER/ASN.1 encoding/decoding library."
categories = ["encoding"]
keywords = ["ASN1","encoding","DER"]
license-file = "LICENSE"
repository = "https://github.com/acw/simple_asn1"
[dependencies]
chrono = "^0.4.0"
num-bigint = "^0.2.0"
num-traits = "^0.2.0"
[dev-dependencies]
quickcheck = "^0.7.1"
rand = "0.5.5"