Top "Pem" questions

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

How to read an RSA key from file

I need to read in an RSA private key from a file to sign a JWT. I have found some …

go cryptography rsa private-key pem
Converting PrivateKey to pem string without using bouncycastle

I'm trying to convert a PrivateKey object to pem format string without using bouncycastle. previously I was doing it like …

openssl bouncycastle pem
Comments in a pem file

Does anyone know if there exists a way to put comments in a pem certificate such that openssl will ignore …

openssl pem
Python p12 to pem

I am trying to understand about openssl and certificates and also Python. So I have this .cert.p12 file. I …

python pem
How to import private key in PEM format using WinCrypt and C++?

I'm trying to use the WinCrypt API in C++. My application need to cipher, decipher, sign and verify files, and …

c++ windows cryptography cryptoapi pem
Convert DER formatted private key file to PEM form

I have a .prv file which is probably DER formatted private key file. This file is used to certificate Cable …

openssl private-key pem der
Configure cURL to use default system cert store on Windows

I have a command line application that is using the libcurl-4 dll's, and currently I can get everything to work …

ssl curl openssl pem
How can I convert .csr into .pem file format as I have to submit csr in pem format

I have to submit CSR in pem format. I have generated CSR using OpenSSL but got stuck in converting it …

private-key pem csr
Create X509Certificate2 from PEM file in .NET Core

I want to create a X509Certificate2 object based on a PEM file. The problem is setting the PrivateKey property …

c# .net-core x509certificate private-key pem
How do you convert a .CSR / p10 / PKCS#10 file to .DER format in java?

How do you convert a .CSR (a.k.a. p10 or PKCS#10) file to .DER format in java? Here is …

java pki pem csr certutil