python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How can we do PGP encryption/decryption using RSA in Php?
I have installed GnuPG library and used below code for encryption and decryption:
$public_key = '/path/0xC6235F66-pub.asc';
$private_key = '/path/0xC6235F66-sec.asc';
function encryptText($public_k...
user11268512
Votes: 0
Answers: 3
Python code to encrypt/decrypt csv files with asymmetric keys(public and private)
Aim: To encrypt/decrypt csv files(of various sizes) using asymmetric method(public and private keys)
Solutions tried: We have been able to generate the keys , but not able to encrypt the csv files.
Al...
TAN08
Votes: 0
Answers: 0
Python code to decrypt an already encrypted symmetric key file with private asymmetric key
Aim: We need to encrypt multiple csv files using PGP encryption.
Solutions tried: We have already tried the symmetric encryption / decryption and its working fine. We tried using only the asymmetric m...
TAN08
Votes: 0
Answers: 1
pgp encryption in node js similar to bouncy castle
I am looking for a package in nodejs which can help in the encryption of data using the public key which has been generated using bouncy castle in java and the encrypted data will be decrypted in boun...
Renu Manhas
Votes: 0
Answers: 1