node-rsa icon indicating copy to clipboard operation
node-rsa copied to clipboard

Node.js RSA library

Results 38 node-rsa issues
Sort by recently updated
recently updated
newest added

Java security module has the below Signature algorithm support. ``` String hash = "797c61b0a08a85da84ef59499fd26c3a44db9a718ba255423acae4407dc2948b"; Signature sig = Signature.getInstance("NONEwithRSA"); PrivateKey privateKey = getPrivateKey(); sig.initSign(privateKey); sig.update(hash.getBytes()); byte[] signedData = sig.sign(); System.out.println(Base64.getEncoder().encodeToString(signedData)); ```...

Kindly release an update the package to use on reactnative. this will be more helpful.

I get the below error with browserified file of Node-RSA module. Please help me in solving this issue. ![image](https://user-images.githubusercontent.com/46337466/181227501-4e8bbd18-9f72-4ca5-9594-e077ddcca70d.png)

Bumps [async](https://github.com/caolan/async) from 3.2.0 to 3.2.4. Changelog Sourced from async's changelog. v3.2.4 Fix a bug in priorityQueue where it didn't wait for the result. (#1725) Fix a bug where unshiftAsync...

dependencies

Bumps [grunt](https://github.com/gruntjs/grunt) from 1.3.0 to 1.5.3. Release notes Sourced from grunt's releases. v1.5.3 Merge pull request #1745 from gruntjs/fix-copy-op 572d79b Patch up race condition in symlink copying. 58016ff Merge pull...

dependencies

When trying to generate headers using `node-rsa`, I get the following error: ``` [nuxt] [request error] this[D].init is not a function at new Sign (https://nuxt-starter-jzgdht.w.staticblitz.com/blitz.331c80ffab288536319518a60349d00207075dad.js:6:1135208) at Object.createSign (https://nuxt-starter-jzgdht.w.staticblitz.com/blitz.331c80ffab288536319518a60349d00207075dad.js:6:808197) at Scheme.sign...

I have a form that I'm encrypting with `react-native-rsa-native`: ```js const form = { value: 1, value2: 2 }; const encryptedBody = await RSA.encrypt(JSON.stringify(body), FORM_PUBLIC_KEY); const body = { encryptedBody...

I created a helper to get the public and private key. The pems files have been created with `new NodeRSA ({b:1024})`: ```js const fs = require("fs"); const NodeRSA = require("node-rsa");...

Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...

dependencies

encrypt method can only encrypt maximum 10 letter string into base64. how can i increase the size?