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.

get x and y components from ecc public key in PEM format using openssl

I am generating a KeyPair for ECC from curve 'secp128r1' using openssl Steps I followed : first I generated …

cryptography openssl public-key-encryption elliptic-curve
OpenPGP encryption with BouncyCastle

I have been trying to put together an in-memory public-key encryption infrastructure using OpenPGP via Bouncy Castle. One of our …

c# bouncycastle public-key-encryption openpgp
GnuPG/PGP and SSL: Sharing the same private key?

I'm trying to sort out my use of digital signatures and encryption. I understand that there are 2 main ways to …

encryption ssl public-key-encryption gnupg openpgp
The argument "-i" passed to GIT_SSH_COMMAND is being ignored

I want to use other IdentityFile for git. I want to use it dynamically, not via config. I'm doing this: $ …

git ssh public-key-encryption
decrypt a message with RSA public key with PyCrypto

I want to decrypt a message with RSA public key with PyCrypto I am useing code below but getting no …

python rsa public-key-encryption pycrypto
Looking for an example to load/use a public ssh key with pysftp

I am working on a script in python using pysftp to establish an sftp connection. This script will run in …

python public-key-encryption pysftp
Can I get the modulus or exponent from a SecKeyRef object in Swift?

In Swift, I created a SecKeyRef object by calling SecTrustCopyPublicKey on some raw X509 certificate data. This is what this …

ios swift encryption cryptography public-key-encryption
Cube root modulo P -- how do I do this?

I am trying to calculate the cube root of a many-hundred digit number modulo P in Python, and failing miserably. …

python algorithm rsa modulo public-key-encryption