Skip to content

Commit

Permalink
10.5.12 release
Browse files Browse the repository at this point in the history
  • Loading branch information
kjur committed Mar 13, 2022
1 parent b634416 commit 179ee87
Show file tree
Hide file tree
Showing 26 changed files with 3,511 additions and 2,819 deletions.
21 changes: 21 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@

ChangeLog for jsrsasign

support ISO 8859-1 TeletexString and BMPString for X500Name
* Changes from 10.5.11 to 10.5.12 (2022-Mar-13)
- src/asn1hex.js
- ASN1HEX.parse fixed for TeletexString and BMPString
- ASN1HEX.parse TeletexString supports non-ASCII
ISO 8859-1 Latin1 characters. Before this version,
only supports ASCII characters.
- hextoipv6 bug fix raised in some of enviroment
- src/base64x.js
- iso88591hextoutf8/utf8toiso88591hex added
- iso88591hextoutf8hex/utf8hextoiso88591hex added
- hextoipv6 fixed
- src/x509.js
- refactoring for X509.get{X500NameArray,RDN,AttrTypeAndValue}.
Add support for Teletex/BMPString and more attrTypes
- test/qunit-do-*.html
- test case added for above updates.
- qunit-do-base64x: add iso8859-1 / utf-8 converter tests
- qunit-do-asn1hex-parse: add TeletexString parse tests
- qunit-do-x509-ext: add NumericString/TeletexString X500Name tests

asn1hex update
* Changes from 10.5.10 to 10.5.11 (2022-Mar-12)
- src/ash1hex.js
Expand Down
6 changes: 3 additions & 3 deletions api/files.html
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ <h2><a href="symbols/src/asn1hex-1.1.js.html">asn1hex-1.1.js</a></h2>


<dt class="heading">Version:</dt>
<dd>jsrsasign 10.5.11 asn1hex 1.2.12 (2022-Mar-12)</dd>
<dd>jsrsasign 10.5.12 asn1hex 1.2.13 (2022-Mar-13)</dd>



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


<dt class="heading">Version:</dt>
<dd>jsrsasign 10.5.10 base64x 1.1.23 (2022-Mar-10)</dd>
<dd>jsrsasign 10.5.12 base64x 1.1.25 (2022-Mar-13)</dd>



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


<dt class="heading">Version:</dt>
<dd>jsrsasign 10.5.8 x509 2.0.13 (2022-Feb-25)</dd>
<dd>jsrsasign 10.5.12 x509 2.0.14 (2022-Mar-13)</dd>



Expand Down
3 changes: 2 additions & 1 deletion api/symbols/ASN1HEX.html
Original file line number Diff line number Diff line change
Expand Up @@ -2843,7 +2843,8 @@ <h1 class="classTitle">



<pre class="code"></pre>
<pre class="code">ASN1HEX.parse("31193017...") &rarr; // RDN
{set: [{seq: [{oid: "localityName"}, {utf8str: {str: "Test"}}] }]}</pre>



Expand Down
2 changes: 2 additions & 0 deletions api/symbols/X509.html
Original file line number Diff line number Diff line change
Expand Up @@ -1937,7 +1937,9 @@ <h1 class="classTitle">
"ds" has one of following value:
<ul>
<li>utf8 - (0x0c) UTF8String</li>
<li>num - (0x12) NumericString</li>
<li>prn - (0x13) PrintableString</li>
<li>tel - (0x14) TeletexString</li>
<li>ia5 - (0x16) IA5String</li>
<li>vis - (0x1a) VisibleString</li>
<li>bmp - (0x1e) BMPString</li>
Expand Down
Loading

0 comments on commit 179ee87

Please sign in to comment.