asn-one is a pure Java implementation of an ASN.1 encoder and decoder. It supports the BER and DER encoding rules of the bytestream. It is designed to be as lightweight as possible by having minimized the external dependencies. It only depends on the SLF4J logging API.
To get asn-one, you have two options:
-
Add a dependency to asn-one to your project.
-
Build asn-one yourself.
Binary releases of asn-one are not provided here, but you can download it straight from the Maven Central repository if you want to.
If you’re building your project using Maven, you can add the following dependency to the pom.xml
:
<dependency>
<groupId>com.hierynomus</groupId>
<artifactId>asn-one</artifactId>
<version>0.7.0</version>
</dependency>
If your project is built using another build tool that uses the Maven Central repository, translate this dependency into the format used by your build tool.
- v0.7.0 (2023-03-06)
-
-
Add support for Java Modules
-
- v0.6.0 (2021-09-27)
-
-
Fix Java module name
-
Fix bug in parsing Tag numbers
-
- v0.4.0 (2018-10-11)
-
-
Moved groupID to 'com.hierynomus' to be in line with other libraries
-
- v0.3.0 (2018-10-10)
-
-
Implemented serialization and deserialization in streams
-
- v0.2.0 (unreleased)
- v0.1.0 (2016-11-25)
-
-
Initial release, containing most standard types
-