v1.1.1: link to online demo
This commit is contained in:
parent
bf359477a9
commit
36592cedc1
14
README.md
14
README.md
|
@ -5,25 +5,23 @@ part of the Bluecrypt suite.
|
|||
<br>
|
||||
<small>(< 150 with newlines and comments)</small>
|
||||
|
||||
| < 100 lines of code | 1.1k gzipped | 2.5k minified | 4.7k with comments |
|
||||
|
||||
# Features
|
||||
|
||||
| <100 lines of code | 1.1k gzipped | 2.5k minified | 4.7k with comments |
|
||||
|
||||
* [x] Complete ASN.1 parser
|
||||
* [x] Parses x.509 certificates
|
||||
* [x] PEM (base64-encoded DER)
|
||||
* [x] VanillaJS, Zero Dependencies
|
||||
* [x] Browsers (back to ES5.1)
|
||||
* [x] Browsers (even old ones)
|
||||
* [x] Online [Demo](https://coolaj86.com/demos/asn1-parser/)
|
||||
* [ ] Node.js (built, publishing soon)
|
||||
* [ ] Online Demo (built, publishing soon)
|
||||
|
||||
![](https://i.imgur.com/gV7w7bM.png)
|
||||
|
||||
<!--
|
||||
# Demo
|
||||
|
||||
<https://coolaj86.com/demos/asn1-parser/>
|
||||
-->
|
||||
|
||||
<img border="1" src="https://i.imgur.com/gV7w7bM.png" />
|
||||
|
||||
# Usage
|
||||
|
||||
|
|
|
@ -21,6 +21,9 @@ rMjgyCokrnjDft6Y/YnA4A50yZe7CnFsqeDcpnPbubP6cpYiVcnevNIYyg==
|
|||
|
||||
<pre><code class="js-json"> </code></pre>
|
||||
|
||||
<br>
|
||||
<p>Made with <a href="https://git.coolaj86.com/coolaj86/asn1-parser/">asn1-parser.js</a></p>
|
||||
|
||||
<script src="./asn1-parser.js"></script>
|
||||
<script>
|
||||
var $input = document.querySelector('.js-input');
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "asn1-parser",
|
||||
"version": "1.1.0",
|
||||
"version": "1.1.1",
|
||||
"description": "An ASN.1 parser in less than 100 lines of Vanilla JavaScript, part of the Bluecrypt suite.",
|
||||
"homepage": "https://git.coolaj86.com/coolaj86/asn1-parser.js",
|
||||
"main": "asn1-parser.js",
|
||||
|
|
Loading…
Reference in New Issue