Top "Pem" questions

PEM, (from Privacy Enhanced Mail standard) is a base64 container format for encoding keys and certificates.

Load an PEM encoded X.509 certificate into Windows CryptoAPI

I need to load a PEM encoded X.509 certificate into a Windows Crypto API context to use with C++. They …

c++ windows cryptography cryptoapi pem
Convert a .PEM certificate to .PFX programmatically using OpenSSL

I've got a .PEM file that I want to convert to a PKCS12 file (PFX), and I know I can …

openssl pfx x509certificate2 pem pkcs#12
Convert a PKCS#8 private key to PEM in java

Hello everyone I'm trying to convert a PKCS#8 private key that I generate in my java program to a PEM …

java encryption ssl bouncycastle pem
Correctly create RSACryptoServiceProvider from public key

I'm currently trying to create an RSACryptoServiceProvider object solely from a decoded PEM file. After several days of searching, I …

c# rsa pem asn.1 rsacryptoserviceprovider
SSH hangs when connecting to Amazon EC2 instance

I could connect to ec2 instance with the following command, but today I couldn't connect using it. ssh -i abcKey.…

ssh amazon-ec2 ssh-keys pem
How can I read a BouncyCastle private key PEM file using JCA?

In one of our applications private keys are stored using BouncyCastle's PEMWriter. At the moment I am investigating if we …

java openssl bouncycastle pem jca
C# RSA Public Key Output Not Correct

I am currently trying to generate and send a public RSA key using C#. It should be a 2048 bit long …

c# openssl rsa public-key pem
Password protect a pem file

I'd like to SSH into my EC2 instance with a password protected pem file. How do I password protect a …

amazon-web-services encryption amazon-ec2 pem ssh-keygen
How to generate RSA Private key from *pem string in Java

I want to generate the private key from a string(a .pem file) in Java. private static final String test = "…

java rsa private-key pem der
How to verify a JWT using python PyJWT with a public PEM cert?

I recently upgraded from PyJWT 0.4.1 to 1.0.1 and I can't figure out how to verify a JWT signed with a public …

python rsa jwt pem