Skip to content

Commit

Permalink
Better polymorphism support
Browse files Browse the repository at this point in the history
Updated to Java 11
Removed modularity since only BER is used
  • Loading branch information
alturkovic committed Jun 24, 2020
1 parent a457d96 commit 5fbc9f1
Show file tree
Hide file tree
Showing 89 changed files with 1,044 additions and 958 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018 Alen Turkovic
Copyright (c) 2020 Alen Turkovic

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
10 changes: 5 additions & 5 deletions README.adoc
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
= Asn annotation based parser

A Jackson inspired annotation based parser for Asn.1 data. Decode or encode your POJOs with annotations.
A Jackson inspired annotation based parser for Asn.1 BER data.
Decode or encode your POJOs with annotations.

Most of the Asn.1 parser I have seen online were either using their specific classes to decode data (i.e. AsnInteger instead of using regular java int or Integer)
or they came with a generator which converted Asn specifications into obscure code riddled with their internals.
Most of the Asn.1 parser I have seen online were either using their specific classes to decode data (i.e. AsnInteger instead of using regular java int or Integer) or they came with a generator which converted Asn specifications into obscure code riddled with their internals.

This parser allows selective encoding/decoding, meaning that you don't have to read all Asn.1 fields into your data, but selectively choose which fields to decode.

Expand Down Expand Up @@ -122,8 +122,8 @@ Add the following under your `<dependencies>`:
----
<dependencies>
<dependency>
<groupId>com.github.alturkovic.asn-parser</groupId>
<artifactId>asn-ber-parser</artifactId>
<groupId>com.github.alturkovic</groupId>
<artifactId>asn-parser</artifactId>
<version>[insert latest version here]</version>
</dependency>
</dependencies>
Expand Down
44 changes: 0 additions & 44 deletions asn-ber-parser/pom.xml

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 5fbc9f1

Please sign in to comment.