v1.0.1: fix typos in docs and comments
This commit is contained in:
parent
baf56d7466
commit
3d084a52b4
|
@ -1,7 +1,7 @@
|
||||||
# BlueCrypt ASN.1 Parser
|
# Bluecrypt ASN.1 Parser
|
||||||
|
|
||||||
An ASN.1 parser in less than 100 lines of Vanilla JavaScript,
|
An ASN.1 parser in less than 100 lines of Vanilla JavaScript,
|
||||||
part of the BlueCrypt suite.
|
part of the Bluecrypt suite.
|
||||||
<br>
|
<br>
|
||||||
<small>(< 150 with newlines and comments)</small>
|
<small>(< 150 with newlines and comments)</small>
|
||||||
|
|
||||||
|
@ -32,7 +32,7 @@ part of the BlueCrypt suite.
|
||||||
```
|
```
|
||||||
|
|
||||||
```js
|
```js
|
||||||
'use strict";
|
'use strict';
|
||||||
|
|
||||||
var ASN1 = window.ASN1 // 62 lines
|
var ASN1 = window.ASN1 // 62 lines
|
||||||
var Enc = window.Enc // 27 lines
|
var Enc = window.Enc // 27 lines
|
||||||
|
@ -92,5 +92,5 @@ to produce a small, focused file that does exactly what it needs to do.
|
||||||
|
|
||||||
# Legal
|
# Legal
|
||||||
|
|
||||||
[BlueCrypt VanillaJS ASN.1 Parser](https://git.coolaj86.com/coolaj86/asn1-parser.js) |
|
[Bluecrypt VanillaJS ASN.1 Parser](https://git.coolaj86.com/coolaj86/asn1-parser.js) |
|
||||||
MPL-2.0
|
MPL-2.0
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>ASN.1 Parser - BlueCrypt</title>
|
<title>ASN.1 Parser - Bluecrypt</title>
|
||||||
<style>
|
<style>
|
||||||
textarea {
|
textarea {
|
||||||
width: 42em;
|
width: 42em;
|
||||||
|
@ -10,7 +10,7 @@
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>BlueCrypt ASN.1 Parser</h1>
|
<h1>Bluecrypt ASN.1 Parser</h1>
|
||||||
|
|
||||||
<textarea class="js-input" placeholder="Paste a PEM here">-----BEGIN PUBLIC KEY-----
|
<textarea class="js-input" placeholder="Paste a PEM here">-----BEGIN PUBLIC KEY-----
|
||||||
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIT1SWLxsacPiE5Z16jkopAn8/+85
|
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIT1SWLxsacPiE5Z16jkopAn8/+85
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "asn1-parser",
|
"name": "asn1-parser",
|
||||||
"version": "1.0.0",
|
"version": "1.0.1",
|
||||||
"description": "An ASN.1 parser in less than 100 lines of Vanilla JavaScript, part of the BlueCrypt suite.",
|
"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",
|
"homepage": "https://git.coolaj86.com/coolaj86/asn1-parser.js",
|
||||||
"main": "asn1-parser.js",
|
"main": "asn1-parser.js",
|
||||||
"directories": {
|
"directories": {
|
||||||
|
|
Loading…
Reference in New Issue