forked from kjur/jsrsasign
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
200 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1584,7 +1584,7 @@ <h4>acceptField parameters</h4> | |
<li>alg - array of acceptable signature algorithm names (ex. ["HS256", "HS384"])</li> | ||
<li>iss - array of acceptable issuer names (ex. ['http://foo.com'])</li> | ||
<li>sub - array of acceptable subject names (ex. ['mailto:[email protected]'])</li> | ||
<li>aud - array or string of acceptable audience name(s) (ex. ['http://foo.com'])</li> | ||
<li>aud - array of acceptable audience name (ex. ['http://foo.com'])</li> | ||
<li>jti - string of acceptable JWT ID (OPTION) (ex. 'id1234')</li> | ||
<li> | ||
verifyAt - time to verify 'nbf', 'iat' and 'exp' in UNIX seconds | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,12 +5,12 @@ | |
.STRN {color: #393;} | ||
.REGX {color: #339;} | ||
.line {border-right: 1px dotted #666; color: #666; font-style: normal;} | ||
</style></head><body><pre><span class='line'> 1</span> <span class="COMM">/* asn1csr-1.0.5.js (c) 2015-2017 Kenji Urushima | kjur.github.com/jsrsasign/license | ||
</style></head><body><pre><span class='line'> 1</span> <span class="COMM">/* asn1csr-1.0.6.js (c) 2015-2018 Kenji Urushima | kjur.github.com/jsrsasign/license | ||
<span class='line'> 2</span> */</span><span class="WHIT"> | ||
<span class='line'> 3</span> </span><span class="COMM">/* | ||
<span class='line'> 4</span> * asn1csr.js - ASN.1 DER encoder classes for PKCS#10 CSR | ||
<span class='line'> 5</span> * | ||
<span class='line'> 6</span> * Copyright (c) 2015-2017 Kenji Urushima ([email protected]) | ||
<span class='line'> 6</span> * Copyright (c) 2015-2018 Kenji Urushima ([email protected]) | ||
<span class='line'> 7</span> * | ||
<span class='line'> 8</span> * This software is licensed under the terms of the MIT License. | ||
<span class='line'> 9</span> * https://kjur.github.io/jsrsasign/license | ||
|
@@ -23,7 +23,7 @@ | |
<span class='line'> 16</span> * @fileOverview | ||
<span class='line'> 17</span> * @name asn1csr-1.0.js | ||
<span class='line'> 18</span> * @author Kenji Urushima [email protected] | ||
<span class='line'> 19</span> * @version jsrsasign 7.2.1 asn1csr 1.0.5 (2017-Jun-03) | ||
<span class='line'> 19</span> * @version jsrsasign 8.0.5 asn1csr 1.0.6 (2018-Jan-13) | ||
<span class='line'> 20</span> * @since jsrsasign 4.9.0 | ||
<span class='line'> 21</span> * @license <a href="https://kjur.github.io/jsrsasign/license/">MIT License</a> | ||
<span class='line'> 22</span> */</span><span class="WHIT"> | ||
|
@@ -118,7 +118,7 @@ | |
<span class='line'>111</span> </span><span class="KEYW">new</span><span class="WHIT"> </span><span class="NAME">_KJUR_asn1_x509.AlgorithmIdentifier</span><span class="PUNC">(</span><span class="PUNC">{</span><span class="STRN">'name'</span><span class="PUNC">:</span><span class="WHIT"> </span><span class="NAME">sigAlgName</span><span class="PUNC">}</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> | ||
<span class='line'>112</span> | ||
<span class='line'>113</span> </span><span class="WHIT"> </span><span class="NAME">sig</span><span class="WHIT"> </span><span class="PUNC">=</span><span class="WHIT"> </span><span class="KEYW">new</span><span class="WHIT"> </span><span class="NAME">_KJUR.crypto.Signature</span><span class="PUNC">(</span><span class="PUNC">{</span><span class="STRN">'alg'</span><span class="PUNC">:</span><span class="WHIT"> </span><span class="NAME">sigAlgName</span><span class="PUNC">}</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> | ||
<span class='line'>114</span> </span><span class="WHIT"> </span><span class="NAME">sig.initSign</span><span class="PUNC">(</span><span class="NAME">this.prvKey</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> | ||
<span class='line'>114</span> </span><span class="WHIT"> </span><span class="NAME">sig.init</span><span class="PUNC">(</span><span class="NAME">this.prvKey</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> | ||
<span class='line'>115</span> </span><span class="WHIT"> </span><span class="NAME">sig.updateHex</span><span class="PUNC">(</span><span class="NAME">this.asn1CSRInfo.getEncodedHex</span><span class="PUNC">(</span><span class="PUNC">)</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> | ||
<span class='line'>116</span> </span><span class="WHIT"> </span><span class="NAME">this.hexSig</span><span class="WHIT"> </span><span class="PUNC">=</span><span class="WHIT"> </span><span class="NAME">sig.sign</span><span class="PUNC">(</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> | ||
<span class='line'>117</span> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -632,7 +632,7 @@ | |
<span class='line'>625</span> * <li>alg - array of acceptable signature algorithm names (ex. ["HS256", "HS384"])</li> | ||
<span class='line'>626</span> * <li>iss - array of acceptable issuer names (ex. ['http://foo.com'])</li> | ||
<span class='line'>627</span> * <li>sub - array of acceptable subject names (ex. ['mailto:[email protected]'])</li> | ||
<span class='line'>628</span> * <li>aud - array or string of acceptable audience name(s) (ex. ['http://foo.com'])</li> | ||
<span class='line'>628</span> * <li>aud - array of acceptable audience name (ex. ['http://foo.com'])</li> | ||
<span class='line'>629</span> * <li>jti - string of acceptable JWT ID (OPTION) (ex. 'id1234')</li> | ||
<span class='line'>630</span> * <li> | ||
<span class='line'>631</span> * verifyAt - time to verify 'nbf', 'iat' and 'exp' in UNIX seconds | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.