Top "Public-key-encryption" questions

An cryptographic scheme which uses two mathematically related keys; a public and a private key where a message encrypted with public key can only be decrypted with the private key and vice-versa.

RSA code in matlab

I want to encrypt a message such as 'HELO1234 and then decrypt to get the original one.I have written …

matlab encryption rsa public-key-encryption
How can I encrypt data with a public key in Node.js?

In crypto, I see only Signer/Verifier for doing digital signature and Cipher/Decipher with symmetric key encryption. How do …

encryption node.js public-key-encryption
how to convert raw modulus & exponent to RSA public key (.pem format)

I have the modulus & exponent of an RSA public key embedded into a binary file, and I am trying …

bash rsa public-key-encryption
Seckey from public key string from server in Swift

I want to encrypt data using RSA , I tried to generate the key in my code and it's working , But …

ios swift public-key-encryption encryption-asymmetric seckeyref
how to encrypt a file using private key in gpg

I'm producing an update for some systems and I want to encrypt the updates for keeping confidentiality, integrity and validity …

linux encryption public-key-encryption private-key gnupg
How to use apache vfs2 for sftp with public-private-key and without password

Currently I am using apache vfs2 to download files from a sftp. For authentication I use user-name and password. Is …

java sftp public-key-encryption apache-commons-vfs
Are there any asymmetric encryption options for JavaScript?

I have to transfer some sensitive information over a JavaScript AJAX Call, over an unencrypted channel (HTTP, not HTTPS). I'd …

javascript security encryption encryption-asymmetric public-key-encryption
I have a RSA public key exponent and modulus. How can I encrypt a string using Python?

Given a public key exponent and modulus like the following, how can I encrypt a string and send it to …

python public-key-encryption
.NET implementation (libraries) of elliptic curve cryptography

Please can you suggest any implementation of elliptical curve cryptography to be used on .NET platform? Also if you have …

.net encryption cryptography public-key-encryption elliptic-curve
Create .pem file for public key RSA encryption C# .net

I want to create .pem file for the public key generated by this method public static Tuple<string, string&…

c# encryption rsa public-key-encryption encryption-asymmetric