Skip to content

Commit

Permalink
3.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
kjur committed Aug 27, 2013
1 parent 1a39061 commit ff9c227
Show file tree
Hide file tree
Showing 17 changed files with 4,648 additions and 424 deletions.
27 changes: 27 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,33 @@

ChangeLog for jsjws

* 3.0.0 Release (2013-Aug-27)
- easy and powerful sign and verify methods available
- now supports HS{256,512},RS{256,384,512},ES{256,384},PS{256,384,512},none
(i.e. supports all algorithms except HS384 and ES512.)
- other existing signing and verfying methods are deprecated.
- now supports signing by following keys:
- PEM plain RSA PKCS#5 private key (NEW)
- PEM encrypted RSA PKCS#5 private key (NEW)
- PEM plain RSA/ECC PKCS#8 private key (NEW)
- PEM encrypted RSA/ECC PKCS#8 private key (NEW)
- RSAKey object of private key
- KJUR.crypto.ECDSA object of private key (NEW)
- now supports verifying by following keys:
- PEM RSA/ECC PKCS#8 public key (NEW)
- PEM RSA/ECC X.509 certificate
- RSAKey object of public key
- KJUR.crypto.ECDSA object of public key (NEW)
- now supports following asymmetoric key algorithms
- RSA
- ECDSA (NEW)
- RSAPSS
- QUnit unit tests added.

* 2.0.2 Release (2013-Jul-30)
- jws-2.0.js 2.0.2 to 2.0.3
- support for rsasign 1.2.5 (verifyStringPSS arg bi to hex change)

* 2.0.2 Release [Jul 29, 2013]
- small fix for jws-2.0.js (2.0.1 -> 2.0.2)

Expand Down
8 changes: 4 additions & 4 deletions api/files.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />

<title>jsjws 2.0.0 JavaScript API Reference - File Index</title>
<title>jsjws 3.0.0 JavaScript API Reference - File Index</title>
<meta name="generator" content="JsDoc Toolkit" />

<style type="text/css">
Expand Down Expand Up @@ -175,7 +175,7 @@

<body>
<div id="header" style="background: #7F8FB1; color: white; margin: -10px">
&nbsp; <b><a href="http://kjur.github.com/jsjws/" style="color: white">jsjws</a></b> 2.0.0 JavaScript API Reference
&nbsp; <b><a href="http://kjur.github.com/jsjws/" style="color: white">jsjws</a></b> 3.0.0 JavaScript API Reference
</div>


Expand All @@ -201,7 +201,7 @@ <h1 class="classTitle">File Index</h1>


<div>
<h2><a href="symbols/src/jws-2.0.js.html">jws-2.0.js</a></h2>
<h2><a href="symbols/src/jws-3.0.js.html">jws-3.0.js</a></h2>


<dl>
Expand All @@ -211,7 +211,7 @@ <h2><a href="symbols/src/jws-2.0.js.html">jws-2.0.js</a></h2>


<dt class="heading">Version:</dt>
<dd>2.0.0 (2013-Jul-20)</dd>
<dd>3.0.0 (2013-Aug-27)</dd>



Expand Down
4 changes: 2 additions & 2 deletions api/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />

<title>jsjws 2.0.0 JavaScript API Reference - Index</title>
<title>jsjws 3.0.0 JavaScript API Reference - Index</title>
<meta name="generator" content="JsDoc Toolkit" />

<style type="text/css">
Expand Down Expand Up @@ -175,7 +175,7 @@

<body>
<div id="header" style="background: #7F8FB1; color: white; margin: -10px">
&nbsp; <b><a href="http://kjur.github.com/jsjws/" style="color: white">jsjws</a></b> 2.0.0 JavaScript API Reference
&nbsp; <b><a href="http://kjur.github.com/jsjws/" style="color: white">jsjws</a></b> 3.0.0 JavaScript API Reference
</div>


Expand Down
Loading

0 comments on commit ff9c227

Please sign in to comment.