Skip to content

Commit

Permalink
10.8.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
kjur committed Apr 19, 2023
1 parent 97921fb commit d679050
Show file tree
Hide file tree
Showing 12 changed files with 48 additions and 29 deletions.
5 changes: 5 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@

ChangeLog for jsrsasign

CABF SMIMEBR OID support
* Changes from 10.8.2 to 10.8.3 (2023-Apr-20)
- src/asn1x509.js
- Add OIDs for CABR S/MIME BR policy OIDs and GN givenName attribute type

RSA OAEP encryption fix
* Changes from 10.8.1 to 10.8.2 (2023-Apr-15)
- ext/rsa.js
Expand Down
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": "10.8.2",
"version": "10.8.3",
"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
8 changes: 4 additions & 4 deletions jsrsasign-all-min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions jsrsasign-jwths-min.js

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

6 changes: 3 additions & 3 deletions jsrsasign-rsa-min.js

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

2 changes: 1 addition & 1 deletion min/asn1x509-1.0.min.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions npm/lib/jsrsasign-all-min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions npm/lib/jsrsasign-jwths-min.js

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

6 changes: 3 additions & 3 deletions npm/lib/jsrsasign-rsa-min.js

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

8 changes: 4 additions & 4 deletions npm/lib/jsrsasign.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion npm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jsrsasign",
"version": "10.8.2",
"version": "10.8.3",
"description": "opensource free pure JavaScript cryptographic library supports RSA/RSAPSS/ECDSA/DSA signing/validation, ASN.1, PKCS#1/5/8 private/public key, X.509 certificate, CRL, OCSP, CMS SignedData, TimeStamp and CAdES and JSON Web Signature(JWS)/Token(JWT)/Key(JWK).",
"main": "lib/jsrsasign.js",
"scripts": {
Expand Down
18 changes: 16 additions & 2 deletions src/asn1x509-1.0.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* asn1x509-2.1.18.js (c) 2013-2022 Kenji Urushima | kjur.github.io/jsrsasign/license
/* asn1x509-2.1.19.js (c) 2013-2022 Kenji Urushima | kjur.github.io/jsrsasign/license
*/
/*
* asn1x509.js - ASN.1 DER encoder classes for X.509 certificate
Expand All @@ -16,7 +16,7 @@
* @fileOverview
* @name asn1x509-1.0.js
* @author Kenji Urushima kenji.urushima@gmail.com
* @version jsrsasign 10.6.1 asn1x509 2.1.18 (2022-Nov-20)
* @version jsrsasign 10.8.3 asn1x509 2.1.19 (2023-Apr-20)
* @since jsrsasign 2.1
* @license <a href="https://kjur.github.io/jsrsasign/license/">MIT License</a>
*/
Expand Down Expand Up @@ -4603,6 +4603,19 @@ KJUR.asn1.x509.OID = new function() {
'archiveTimeStampV3': '0.4.0.1733.2.4',//ETSI EN29319122/TS101733
'pdfRevocationInfoArchival':'1.2.840.113583.1.1.8', //Adobe
'adobeTimeStamp': '1.2.840.113583.1.1.9.1', // Adobe
// CABF S/MIME BR
'smimeMailboxLegacy': '2.23.140.1.5.1.1',
'smimeMailboxMulti': '2.23.140.1.5.1.2',
'smimeMailboxStrict': '2.23.140.1.5.1.3',
'smimeOrganizationLegacy': '2.23.140.1.5.2.1',
'smimeOrganizationMulti': '2.23.140.1.5.2.2',
'smimeOrganizationStrict': '2.23.140.1.5.2.3',
'smimeSponsorLegacy': '2.23.140.1.5.3.1',
'smimeSponsorMulti': '2.23.140.1.5.3.2',
'smimeSponsorStrict': '2.23.140.1.5.3.3',
'smimeIndividualLegacy': '2.23.140.1.5.4.1',
'smimeIndividualMulti': '2.23.140.1.5.4.2',
'smimeIndividualStrict': '2.23.140.1.5.4.3',
};

this.atype2oidList = {
Expand All @@ -4620,6 +4633,7 @@ KJUR.asn1.x509.OID = new function() {
// http://blog.livedoor.jp/k_urushima/archives/656114.html
'SN': '2.5.4.4', // surname
'T': '2.5.4.12', // title
'GN': '2.5.4.42', // givenName
'DN': '2.5.4.49', // distinguishedName
'E': '1.2.840.113549.1.9.1', // emailAddress in MS.NET or Bouncy
// other AttributeType name string (no short name)
Expand Down

0 comments on commit d679050

Please sign in to comment.