Skip to content
/ asn-one Public
forked from hierynomus/asn-one

A Standalone ASN.1 Encoding/Decoding Library in Java

License

Notifications You must be signed in to change notification settings

dhaase/asn-one

 
 

Repository files navigation

asn-one - ASN.1 library for Java

download Build Status Codacy code quality Javadoc Maven Central

What is asn-one

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.

Getting asn-one

To get asn-one, you have two options:

  1. Add a dependency to asn-one to your project.

  2. 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.

Depending on asn-one

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.1.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.

Building asn-one

  1. Clone the asn-one repository.

  2. Ensure you have Java7 installed with the Unlimited strength Java Cryptography Extensions (JCE).

  3. Run the command ./gradlew clean build.

Release History

v0.1.0 (2016-11-25)
  • Initial release, containing most standard types

About

A Standalone ASN.1 Encoding/Decoding Library in Java

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 78.1%
  • Groovy 21.9%