Skip to content

Commit

Permalink
6.0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
kjur committed Sep 12, 2016
1 parent 39645e7 commit 805cf6b
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 19 deletions.
5 changes: 2 additions & 3 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@

ChangeLog for jsrsasign

* Changes between 6.0.0 to next version
- all node sample scripts are fixed for 6.0.0.

* Changes between 6.0.0 to 6.0.1 (2016-Sep-12)
- old jsrsasign.js is used in npm package. now fixed.

* Changes between 5.1.0 to 6.0.0 (2016-Sep-11)
- As of so much request to remove Node functions
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": "5.1.0",
"version": "6.0.1",
"main": "jsrsasign-latest-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 CMS SignedData, TimeStamp, CAdES, JWS and JWT in pure JavaScript.",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion jsrsasign-latest-all-min.js

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

10 changes: 6 additions & 4 deletions npm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,13 @@ and this 'jsrsasign' module.
AVAILABLE CLASSES AND METHODS
-----------------------------

Most of the classes and methods defined in jsrsasign and jsjws are
Most of the classes and methods defined in jsrsasign
available in this jsrsasign npm module.

After loading the module,

> var r = require('jsrsasign');
> var r = require('jsrsasign-util'); // for file I/O utilities

You can refer name spaces, classes, methods and functions
by following variables:
Expand All @@ -62,9 +63,10 @@ EXAMPLE(1) SIGNATURE

Loading encrypted PKCS#5 private key:

> var fs = require('fs');
> var pem = fs.readFileSync('z1.prv.p5e.pem', 'binary');
> var prvKey = a.KEYUTIL.getKey(pem, 'passwd');
> var rs = require('jsrsasign');
> var rsu = require('jsrsasign-util');
> var pem = rsu.readFile('z1.prv.p5e.pem');
> var prvKey = rs.KEYUTIL.getKey(pem, 'passwd');

Sign string 'aaa' with the loaded private key:

Expand Down
10 changes: 1 addition & 9 deletions npm/lib/jsrsasign.js

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

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": "6.0.0",
"version": "6.0.1",
"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, CMS SignedData, TimeStamp and CAdES and JSON Web Signature(JWS)/Token(JWT)/Key(JWK).",
"main": "lib/jsrsasign.js",
"scripts": {
Expand Down

0 comments on commit 805cf6b

Please sign in to comment.