You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16-16Lines changed: 16 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -212,10 +212,10 @@ Questions, comments, bug reports, and pull requests are all welcome.
212
212
## Changelog
213
213
214
214
### 0.2.20
215
-
* Added `.encryptPrivate()` and `.decryptPublic()` methods
216
-
* Encrypt/decrypt methods in nodejs 0.12.x and io.js using native implementation (> 40x speed boost)
215
+
* Added `.encryptPrivate()` and `.decryptPublic()` methods.
216
+
* Encrypt/decrypt methods in nodejs 0.12.x and io.js using native implementation (> 40x speed boost).
217
217
* Fixed some regex issue causing catastrophic backtracking.
218
-
**KNOWN ISSUE*:`encryptPrivate` and `decryptPublic` don't have native implementation in nodejs and can't be use in native implementation with pkcs1_oaep padding in io.js
218
+
**KNOWN ISSUE*:`encryptPrivate` and `decryptPublic` don't have native implementation in nodejs and can't be use in native implementation with pkcs1_oaep padding in io.js.
219
219
220
220
### 0.2.10
221
221
***Methods `.exportPrivate()` and `.exportPublic()` was replaced by `.exportKey([format])`.**
@@ -226,34 +226,34 @@ Questions, comments, bug reports, and pull requests are all welcome.
226
226
***`.getPublicPEM()` method was renamed to `.exportPublic()`**
227
227
***`.getPrivatePEM()` method was renamed to `.exportPrivate()`**
228
228
***`.loadFromPEM()` method was renamed to `.importKey()`**
229
-
* Added PKCS1_OAEP encrypting/decrypting support
230
-
***PKCS1_OAEP now default scheme, you need to specify 'encryptingScheme' option to 'pkcs1' for compatibility with 0.1.x version of NodeRSA**
231
-
* Added PSS signing/verifying support
229
+
* Added PKCS1_OAEP encrypting/decrypting support.
230
+
***PKCS1_OAEP now default scheme, you need to specify 'encryptingScheme' option to 'pkcs1' for compatibility with 0.1.x version of NodeRSA.**
231
+
* Added PSS signing/verifying support.
232
232
* Signing now supports `'md5'`, `'ripemd160'`, `'sha1'`, `'sha256'`, `'sha512'` hash algorithms in both environments
233
233
and additional `'md4'`, `'sha'`, `'sha224'`, `'sha384'` for nodejs env.
234
234
***`options.signingAlgorithm` was renamed to `options.signingScheme`**
235
-
* Added `encryptingScheme` option
235
+
* Added `encryptingScheme` option.
236
236
* Property `key.options` now mark as private. Added `key.setOptions(options)` method.
237
237
238
238
239
239
### 0.1.54
240
-
* Added support for loading PEM key from Buffer (`fs.readFileSync()` output)
241
-
* Added `isEmpty()` method
240
+
* Added support for loading PEM key from Buffer (`fs.readFileSync()` output).
241
+
* Added `isEmpty()` method.
242
242
243
243
### 0.1.52
244
-
* Improve work with not properly trimming PEM strings
244
+
* Improve work with not properly trimming PEM strings.
245
245
246
246
### 0.1.50
247
-
* Implemented native js signing and verifying for browsers
248
-
*`options.signingAlgorithm` now takes only hash-algorithm name
249
-
* Added `.getKeySize()` and `.getMaxMessageSize()` methods
250
-
*`.loadFromPublicPEM` and `.loadFromPrivatePEM` methods marked as private
247
+
* Implemented native js signing and verifying for browsers.
248
+
*`options.signingAlgorithm` now takes only hash-algorithm name.
249
+
* Added `.getKeySize()` and `.getMaxMessageSize()` methods.
250
+
*`.loadFromPublicPEM` and `.loadFromPrivatePEM` methods marked as private.
0 commit comments