Questions tagged [cryptico]

Cryptico is an attempt to implement "an encryption system utilizing RSA and AES for javascript"

Cryptico is an attempt to implement "an encryption system utilizing RSA and AES for javascript"

20 questions
0
votes
1 answer

Saved RSA private key in session, but it has been spoiled

This is what I planned to do. Generated RSA private/public key when user call my website Give public key to browser Save private key in session (node.js, express-session) When user try to log-in use public key to encrypt id and pw, decrypt it with…
0
votes
1 answer

How to get password back from PublicKeyString in Cryptico

var PassPhrase = "Rosy"; var Bits = 1024; dfRSAkey = cryptico.generateRSAKey(PassPhrase.toString(),Bits); dfPublicKeyString = cryptico.publicKeyString(dfRSAkey); I am able to encrypt "Rosy" and I got public key…
0
votes
1 answer

Access scope with multithread.js

I try to generate an RSA key and since this takes some time I want to use multithread.js for the key generation. My code: