node-forge
Advanced tools
Comparing version 0.8.2 to 0.8.3
Forge ChangeLog | ||
=============== | ||
## 0.8.3 - 2019-05-15 | ||
### Fixed | ||
- Use basic character set for code. | ||
## 0.8.2 - 2019-03-18 | ||
@@ -5,0 +10,0 @@ |
@@ -651,3 +651,3 @@ /** | ||
* key schedule consists of a linear array of 4-byte words, denoted [wi ], | ||
* with i in the range 0 ≤ i < Nb(Nr + 1). | ||
* with i in the range 0 <= i < Nb(Nr + 1). | ||
* | ||
@@ -708,3 +708,3 @@ * KeyExpansion(byte key[4*Nk], word w[Nb*(Nr+1)], Nk) | ||
/* When we are updating a cipher block we always use the code path for | ||
/* When we are updating a cipher block we always use the code path for | ||
encryption whether we are decrypting or not (to shorten code and | ||
@@ -810,3 +810,3 @@ simplify the generation of look up tables). However, because there | ||
AddRoundKey(state, w[0, Nb-1]) | ||
for round = 1 step 1 to Nr–1 | ||
for round = 1 step 1 to Nr-1 | ||
SubBytes(state) | ||
@@ -1023,3 +1023,3 @@ ShiftRows(state) | ||
*/ | ||
// Note: rows are shifted inline | ||
// Note: rows are shifted inline | ||
output[0] = | ||
@@ -1026,0 +1026,0 @@ (sub[a >>> 24] << 24) ^ |
@@ -71,3 +71,3 @@ /** | ||
* attrValues SET OF ATTRIBUTE.&Type ({PKCS12AttrSet}{@attrId}) | ||
* } -- This type is compatible with the X.500 type ’Attribute’ | ||
* } -- This type is compatible with the X.500 type 'Attribute' | ||
* | ||
@@ -74,0 +74,0 @@ * PKCS12AttrSet ATTRIBUTE ::= { |
{ | ||
"name": "node-forge", | ||
"version": "0.8.2", | ||
"version": "0.8.3", | ||
"description": "JavaScript implementations of network transports, cryptography, ciphers, PKI, message digests, and various utilities.", | ||
@@ -19,6 +19,6 @@ "homepage": "https://github.com/digitalbazaar/forge", | ||
"browserify": "^16.1.0", | ||
"commander": "^2.14.1", | ||
"commander": "^2.20.0", | ||
"cross-env": "^5.1.3", | ||
"eslint": "^5.14.1", | ||
"eslint-config-digitalbazaar": "^1.7.0", | ||
"eslint": "^5.16.0", | ||
"eslint-config-digitalbazaar": "^2.0.0", | ||
"express": "^4.16.2", | ||
@@ -38,6 +38,6 @@ "karma": "^3.1.4", | ||
"karma-webpack": "^3.0.5", | ||
"mocha": "^5.0.1", | ||
"mocha": "^5.2.0", | ||
"mocha-lcov-reporter": "^1.2.0", | ||
"nodejs-websocket": "^1.7.1", | ||
"nyc": "^13.3.0", | ||
"nyc": "^14.1.1", | ||
"opts": "^1.2.2", | ||
@@ -44,0 +44,0 @@ "webpack": "^3.11.0", |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1683334