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.

Using Base64 encoded Public Key to verify RSA signature

In a nutshell, this is my problem: private string publicKeyString = "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDVGUzbydMZS+fnkGTsUkDKEyFOGwghR234d5GjPnMIC0RFtXtw2tdcNM8I9…

c# .net hash cryptography public-key-encryption
Encrypting a file with RSA in Python

I'm implementing file encryption with RSA, using PyCrypto. I know it's somewhat wrong, first of all because RSA is very …

python encryption public-key-encryption
what is the difference between various keys in public key encryption

I am confused between various keys used in encryption. Amazon gave me key.pem In linux i generate keys like …

encryption ssh amazon-web-services putty public-key-encryption
How to generate ssh compatible id_rsa(.pub) from Java

I'm looking for a way to programmatically create ssh compatible id_rsa and id_rsa.pub files in Java. I …

java ssh public-key-encryption openssh
Git SSH authentication

I have Debian, Fisheye and Git on my server. My git repos are managed by Fisheye. There is no authentication …

git ssh public-key-encryption public-key atlassian-fisheye
'Cannot find the requested object' exception while creating X509Certificate2 from string

I am trying to create X509Certificate2 from string. Let me show an example: string keyBase64String = Convert.ToBase64String(…

c# encryption public-key-encryption x509certificate2
When to use X509EncodedKeySpec vs RSAPublicKeySpec?

I have a certificate in a text file, its contents look like: -----BEGIN PUBLIC KEY----- xxxx xxxx xxxx -----END PUBLIC …

java encryption public-key-encryption
How can I get the public key of a webpage?

How can I get the public key of a website like VeriSign and all other websites which use https(secure …

public-key-encryption public-key
How do I obtain the public key from an ECDSA private key in OpenSSL?

I am providing this sample application to show my problem #include <stdio.h> #include <stdlib.h> #…

cryptography openssl public-key-encryption elliptic-curve
Can a public key have a different length (encryption) than the private key?

I have a 1024 bits private key, and use it to generate a public key. Does that automatically mean that my …

encryption cryptography bit public-key-encryption private-key