Skip to content

Commit d6cf475

Browse files
committed
10.1.10 release
1 parent 678cf20 commit d6cf475

File tree

182 files changed

+4539
-4409
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

182 files changed

+4539
-4409
lines changed

ChangeLog.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11

22
ChangeLog for jsrsasign
33

4+
extend support for distinguished name
5+
* Changes from 10.1.9 to 10.1.10 release (2021-02-14)
6+
- src/asn1x509.js
7+
- AttributeTypeAndValue
8+
- add support for OID and oid name constructor
9+
AttributeTypeAndValue({str: "/streetAddress=foo"})
10+
AttributeTypeAndValue({str: "/2.5.4.9=foo"})
11+
- OID.name2oidList
12+
- add givenName
13+
- test/qunit-do-asn1x509.html
14+
- updated to follow above
15+
416
Add SubjectDirectoryAttributes extension support
517
* Changes from 10.1.8 to 10.1.9 release (2021-02-12)
618
- src/asn1x509.js

Makefile

Lines changed: 43 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,54 @@ FILES_MIN = \
2222
min/jwsjs-2.0.min.js \
2323
min/x509crl.min.js \
2424
min/nodeutil-1.0.min.js
25-
25+
26+
JSDOC_SRC = \
27+
asn1hex-1.1.js \
28+
rsapem-1.1.js \
29+
rsasign-1.2.js \
30+
x509-1.1.js \
31+
keyutil-1.0.js \
32+
asn1-1.0.js \
33+
asn1x509-1.0.js \
34+
asn1cms-1.0.js \
35+
asn1tsp-1.0.js \
36+
asn1cades-1.0.js \
37+
asn1csr-1.0.js \
38+
asn1ocsp-1.0.js \
39+
crypto-1.1.js \
40+
ecdsa-modified-1.0.js \
41+
ecparam-1.0.js \
42+
dsa-2.0.js \
43+
base64x-1.1.js \
44+
jws-3.3.js \
45+
jwsjs-2.0.js \
46+
x509crl.js \
47+
nodeutil-1.0.js
48+
2649
FILES_EXT_MIN = \
2750
ext/ec-min.js \
2851
ext/rsa-min.js \
2952
ext/rsa2-min.js
3053

54+
JSRUN=jsrun-jsrsasign.sh
55+
56+
JSDOCOUTDIR1=_tmp
57+
58+
APIDOCDIR=api
59+
60+
jsdoc:
61+
rm -rf $(APIDOCDIR)
62+
mkdir $(APIDOCDIR)
63+
( \
64+
cd src; \
65+
${JSRUN} $(JSDOC_SRC) \
66+
-d=../$(APIDOCDIR) -v \
67+
)
68+
mv $(APIDOCDIR)/symbols/_global_.html $(APIDOCDIR)/symbols/global__.html
69+
find $(APIDOCDIR) -type f -name "*.html" -print0 | xargs -0 sed -i.bak -e "s/_global_/global__/g"
70+
find $(APIDOCDIR) -type f -name "*.html" -print0 | xargs -0 sed -i.bak -e "s/2012-2020/2012-2021/g"
71+
find $(APIDOCDIR) -type f -name "*.html.bak" -exec rm {} \;
72+
3173
all-min: $(FILES_MIN)
3274
@echo "all min converted."
3375

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ HIGHLIGHTS
3333
- no dependency to other library
3434
- no dependency to [W3C Web Cryptography API](https://www.w3.org/TR/WebCryptoAPI/) nor [OpenSSL](https://www.openssl.org/)
3535
- no dependency on newer ECMAScirpt function. So old browsers also supported.
36-
- very popular crypto library with [0.6M+ npm downloads/month](https://npm-stat.com/charts.html?package=jsrsasign&from=2016-05-01&to=2021-02-06)
36+
- very popular crypto library with [0.6M+ npm downloads/month](https://npm-stat.com/charts.html?package=jsrsasign&from=2016-05-01&to=2021-02-12)
3737

3838
INSTALL
3939
-------

api/files.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,7 @@ <h2><a href="symbols/src/asn1x509-1.0.js.html">asn1x509-1.0.js</a></h2>
656656

657657

658658
<dt class="heading">Version:</dt>
659-
<dd>jsrsasign 10.1.9 asn1x509 2.1.7 (2021-Feb-12)</dd>
659+
<dd>jsrsasign 10.1.10 asn1x509 2.1.8 (2021-Feb-14)</dd>
660660

661661

662662

api/symbols/ASN1HEX.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2825,7 +2825,7 @@ <h1 class="classTitle">
28252825

28262826
<!-- ============================== footer ================================= -->
28272827
<div class="fineprint" style="clear:both">
2828-
&copy; 2012-2020 Kenji Urushima, All rights reserved<br/>
2828+
&copy; 2012-2021 Kenji Urushima, All rights reserved<br/>
28292829

28302830
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0
28312831
</div>

api/symbols/Base64x.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@ <h1 class="classTitle">
642642

643643
<!-- ============================== footer ================================= -->
644644
<div class="fineprint" style="clear:both">
645-
&copy; 2012-2020 Kenji Urushima, All rights reserved<br/>
645+
&copy; 2012-2021 Kenji Urushima, All rights reserved<br/>
646646

647647
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0
648648
</div>

api/symbols/KEYUTIL.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2133,7 +2133,7 @@ <h5>EXAMPLE</h5>
21332133

21342134
<!-- ============================== footer ================================= -->
21352135
<div class="fineprint" style="clear:both">
2136-
&copy; 2012-2020 Kenji Urushima, All rights reserved<br/>
2136+
&copy; 2012-2021 Kenji Urushima, All rights reserved<br/>
21372137

21382138
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0
21392139
</div>

api/symbols/KJUR.asn1.ASN1Object.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -988,7 +988,7 @@ <h1 class="classTitle">
988988

989989
<!-- ============================== footer ================================= -->
990990
<div class="fineprint" style="clear:both">
991-
&copy; 2012-2020 Kenji Urushima, All rights reserved<br/>
991+
&copy; 2012-2021 Kenji Urushima, All rights reserved<br/>
992992

993993
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0
994994
</div>

api/symbols/KJUR.asn1.ASN1Util.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1029,7 +1029,7 @@ <h1 class="classTitle">
10291029

10301030
<!-- ============================== footer ================================= -->
10311031
<div class="fineprint" style="clear:both">
1032-
&copy; 2012-2020 Kenji Urushima, All rights reserved<br/>
1032+
&copy; 2012-2021 Kenji Urushima, All rights reserved<br/>
10331033

10341034
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0
10351035
</div>

api/symbols/KJUR.asn1.DERAbstractString.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -868,7 +868,7 @@ <h1 class="classTitle">
868868

869869
<!-- ============================== footer ================================= -->
870870
<div class="fineprint" style="clear:both">
871-
&copy; 2012-2020 Kenji Urushima, All rights reserved<br/>
871+
&copy; 2012-2021 Kenji Urushima, All rights reserved<br/>
872872

873873
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0
874874
</div>

0 commit comments

Comments
 (0)