Add ASN.1 / DER format support to README#3161
Open
JesusMcCloud wants to merge 2 commits intoKotlin:masterfrom
Open
Add ASN.1 / DER format support to README#3161JesusMcCloud wants to merge 2 commits intoKotlin:masterfrom
JesusMcCloud wants to merge 2 commits intoKotlin:masterfrom
Conversation
Added ASN.1 / DER format support through awesn1.
pdvrieze
reviewed
Mar 12, 2026
formats/README.md
Outdated
| | Format | GitHub repo and Artifact | Platform | Notes | | ||
| |--------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | ||
| | Avro | [avro-kotlin/avro4k](https://github.com/avro-kotlin/avro4k) <br> `com.github.avro-kotlin.avro4k:avro4k-core` | JVM only | This library allows serialization and deserialization of objects to and from [Avro](https://avro.apache.org). It will read and write from Avro binary or json streams or generate Avro Generic Records directly. It will also generate Avro schemas from data classes. The library allows for easy extension and overrides for custom schema formats, compatiblity with schemas defined outside out of the JVM and for types not supported out of the box. | | ||
| | ASN.1 / DER | [a-sit-plus/awesn1](https://github.com/avro-kotlin/avro4k) <br> `at.asitplus.awesn1:kxs` | all supported platforms | Fully-Fledged ASN.1 (DER) library with first-class idiomatic kotlinx.seraializaton support. Has [extensive documentation](https://a-sit-plus.github.io/awesn1) and zero external dependencies. tested against a large corpus of real-world cryptographic data structures. | |
Contributor
Author
There was a problem hiding this comment.
Thanks! I also realized that ASN.1 should come before Avro
Fix typo and observe alphabetic ordering
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Added ASN.1 / DER format support through awesn1.