Skip to content

Commit

Permalink
8.0.22 release
Browse files Browse the repository at this point in the history
  • Loading branch information
kjur committed Aug 4, 2020
1 parent 29a7a23 commit ca6ab7a
Show file tree
Hide file tree
Showing 23 changed files with 1,619 additions and 1,572 deletions.
10 changes: 9 additions & 1 deletion ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@

ChangeLog for jsrsasign

* Changes from 8.0.21 to next version
ASN1HEX and X509 class minior bug fix
* Changes from 8.0.21 to 8.0.22 (2020-Aug-05)
- src/asn1hex.js
- dump method update for BitString encapsulated
- src/x509.js
- getKeyUsageBin bugfix for such keyCertSign and cRLSign only
- fix to stop raising error when X509 constructor called and
asn1x509 doesn't loaded
- TODO: getKeyUsageBin still has bug when decipherOnly(8) bit exists
- test
- qunit-do-{asn1hex-dump,x509-{ext,key}}.html to follow above updates

Donation program started, more RSA-PSS support and add ASN1HEX.get{Idx,TLV,V}byListEx
* Changes from 8.0.20 to 8.0.21 (2020-Aug-01)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ NEWS
HIGHLIGHTS
----------
- Swiss Army Knife style all in one package crypto and PKI library
- available on Node and browsers
- available on [Node.js](https://www.npmjs.com/package/jsrsasign) and browsers
- very easy API to use
- powerful various format key loader and ASN.1 API
- rich document and samples
- no dependency to other library
- no dependency to W3C Web Crypto API nor OpenSSL
- very popular crypto library with 0.6M+ npm downloads/month
- no dependency to [W3C Web Cryptography API](https://www.w3.org/TR/WebCryptoAPI/) nor [OpenSSL](https://www.openssl.org/)
- very popular crypto library with [0.6M+ npm downloads/month](https://npm-stat.com/charts.html?package=jsrsasign&from=2016-05-01&to=2020-08-03)

INSTALL
-------
Expand Down
4 changes: 2 additions & 2 deletions api/files.html
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ <h2><a href="symbols/src/asn1hex-1.1.js.html">asn1hex-1.1.js</a></h2>


<dt class="heading">Version:</dt>
<dd>jsrsasign 8.0.19 asn1hex 1.2.1 (2020-Jun-22)</dd>
<dd>jsrsasign 8.0.19 asn1hex 1.2.2 (2020-Aug-06)</dd>



Expand Down Expand Up @@ -804,7 +804,7 @@ <h2><a href="symbols/src/x509-1.1.js.html">x509-1.1.js</a></h2>


<dt class="heading">Version:</dt>
<dd>jsrsasign 8.0.19 x509 1.1.22 (2020-Jul-29)</dd>
<dd>jsrsasign 8.0.22 x509 1.1.23 (2020-Aug-05)</dd>



Expand Down
4 changes: 2 additions & 2 deletions api/symbols/ASN1HEX.html
Original file line number Diff line number Diff line change
Expand Up @@ -1172,7 +1172,7 @@ <h1 class="classTitle">
structured data or a context specific tag string (ex. "[1]").
Here is a sample deep structured ASN.1 data and
nthLists referring decendent objects.
<blockquote>
<blockquote><pre>
SQUENCE - referring nthList is below:
SEQUENCE - [0]
IA5STRING "a1" - [0, 0]
Expand All @@ -1184,7 +1184,7 @@ <h1 class="classTitle">
[1] "b4" - [1, "[1]"] // optional since context tag
IA5STRING "b5" - [1, 2] // context is skipped. next is 2
UTF8STRING "b6" - [1, 3]
</blockquote>
</pre></blockquote>

<br/>
This method can dig into ASN.1 object encapsulated by
Expand Down
644 changes: 325 additions & 319 deletions api/symbols/src/asn1hex-1.1.js.html

Large diffs are not rendered by default.

2,415 changes: 1,210 additions & 1,205 deletions api/symbols/src/x509-1.1.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kjur-jsrsasign",
"version": "8.0.21",
"version": "8.0.22",
"main": "jsrsasign-all-min.js",
"description": "The 'jsrsasign' (RSA-Sign JavaScript Library) is an opensource free cryptography library supporting RSA/RSAPSS/ECDSA/DSA signing/validation, ASN.1, PKCS#1/5/8 private/public key, X.509 certificate, CRL, OCSP, CMS SignedData, TimeStamp, CAdES, JWS and JWT in pure JavaScript.",
"license": "MIT",
Expand Down
6 changes: 3 additions & 3 deletions jsrsasign-all-min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion jsrsasign-jwths-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions jsrsasign-rsa-min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion min/asn1hex-1.1.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit ca6ab7a

Please sign in to comment.