rsa-compat
Advanced tools
Comparing version 1.4.0 to 1.4.1
{ | ||
"name": "rsa-compat", | ||
"version": "1.4.0", | ||
"version": "1.4.1", | ||
"description": "RSA utils that work on Windows, Mac, and Linux with or without C compiler", | ||
@@ -5,0 +5,0 @@ "main": "node.js", |
@@ -64,3 +64,3 @@ # rsa-compat.js | ||
var bitlen = 1024; | ||
var bitlen = 2048; | ||
var exp = 65537; | ||
@@ -132,6 +132,6 @@ var options = { public: true, pem: true, internal: true }; | ||
RSA.generateKeypair(1024, 65537, { pem: false, public: false, internal: false }, function (keypair) { /*...*/ }); | ||
RSA.generateKeypair(2048, 65537, { pem: false, public: false, internal: false }, function (keypair) { /*...*/ }); | ||
``` | ||
`bitlen`: *1024* (default), 2048, or 4096 | ||
`bitlen`: 2048 or 4096 | ||
@@ -138,0 +138,0 @@ `exp`: *65537* (default) |
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
44220