Tagged Questions
Base64 based encoding (from Privacy Enhanced Mail standard)
8
votes
3answers
9k views
openssl .pem key
How can I create a PEM file from a ssl certificate? These are the files I have available:
.crt, server.csr and server.key.
Any ideas?
Thanks
7
votes
2answers
5k views
How to use PEM file to create a SSL socket in Java?
See related question.
I have a PEM file provided to me and was told that it will be needed in establishing a SSL socket that connects to a c++ server for some API calls. Does anyone know how I can ...
6
votes
1answer
928 views
C++ OpenSSL export private key
I'm using SSL successfully so far, but have come up against a confusing roadblock. I generate an RSA keypair, and previously was using PEM_write_bio_RSAPrivateKey(...) to export them. However the man ...
5
votes
1answer
2k views
Formatting RSA keys for OpenSSL in Java
Background
RSA key generation with OpenSSL on Linux using the command,
openssl genrsa -out mykey.pem 1024
created the following:
"-----BEGIN RSA PRIVATE KEY-----
...
4
votes
1answer
300 views
Signing files on Linux with SPC files
I have one .key file from which I generated a .csr file that I used to purchase a GoDaddy code signing certificate. From GoDaddy I received one .spc file.
I exported the spc file to pem with the ...
4
votes
2answers
7k views
Using a PEM (X.509) private key to sign a message natively
I'm trying to use a PEM(X.509) certificate (stored in a privateKey.pem file on disk) to sign messages sent via sockets in Java, but am having a lot of trouble finding an example that's close. I'm ...
4
votes
3answers
2k views
Load an X509 PEM file into Windows CryptoApi
I'm new to the whole Crypto thing, so I beg some basic pointers.
I need to load .PEM (X509) "-----BEGIN RSA XXX KEY----- -----END RSA XXX KEY-----" into a Windows Crypto Api context to use with C++ ...
3
votes
1answer
2k views
Write x509 certificate into PEM formatted string in java?
Is there some high level way to write an X509Certificate into a PEM formatted string?
Currently I'm doing x509cert.encode() to write it into a DER formatted string, then base 64 encoding it and ...
3
votes
2answers
578 views
How do I convert an XML RSA key to a PEM file?
I have two XML files, structured as follows:
My Key
<RSAKeyValue>
<Modulus> ... </Modulus>
<Exponent> ... </Exponent>
<P> ... </P>
<Q> ... ...
2
votes
1answer
84 views
Ruby Error reading in Certificate File with OpenSSL
I am trying to do a simple OpenSSL::X509::Certificate.new(File.read("testuser.p12")) from irb with ruby 1.8.7 (or 1.9.2, same result for both. The error I get back is ...
2
votes
1answer
394 views
How to verify PEM format certificate in Java
I have PEM format file, How can verify the signature in Java, as I followed http://download.oracle.com/javase/tutorial/security/apisign/versig.html but found that Java doesnt support PEM
2
votes
1answer
252 views
Openssl s_Client doesn't verify certificates in 0.9.8r
I am using openssl v0.9.8r and I tried running this command (with the CA file name as cacert.pem in the directory in which I was running)
openssl s_client -CAfile cacert.pem -CApath ./ -connect ...
2
votes
1answer
535 views
How to generate a DER/PEM certificate from public exponent and modulus of RSA?
As we know, a public key consists of a public exponent and a modulus.
My questions is:
How to generate a DER/PEM certificate from public exponent and modulus of RSA?
Thank you very much in advance.
...
2
votes
1answer
540 views
Apache HttpClient and PEM certificate files
I'd like to programmatically access a site that requires Client certificates, which I have in PEM files. In this application I don't want to add them to my keystore, use keytool, or openssl if I can ...
2
votes
2answers
1k views
Trouble connecting to SSL-encrypted web service with PHP
I got two certificate files from the provider, one in a .cer-format and one in a .p7b-format. I then converted the p7b-certificate to a p12-certificate. With this certificate I'm able to connect to ...
2
votes
6answers
3k views
2
votes
3answers
564 views
Translate Java to Python — signing strings with PEM certificate files
I'm trying to translate the follow Java into its Python equivalent.
// certificate is contents of https://fps.sandbox.amazonaws.com/certs/090909/PKICert.pem
// signature is a string that I need to ...
2
votes
2answers
344 views
Details in hex of the certificate in .pem openssl
I have generated using openssl mycert.pem which contents the certificate. And I converted the base64 text into hex.
I wonder if it's possible to extract the informations from the hex string in c ...
1
vote
1answer
56 views
How to verify key length of a PEM certificate using openSSL functions
How do I verify the key length of a PEM certificate that is generated in this way:
# openssl genrsa -des3 -out server.key 1024
# openssl req -new -key server.key -out server.csr
# cp server.key ...
1
vote
1answer
89 views
Decrypt String with *.Pem file in C#
Ok, I have a string of text, encoded in Base64.
I want to decode this from Base64 to a byte array, then decrypt this with my private key. My private key is a *.pem file. I am lost!
I think I need to ...
1
vote
2answers
102 views
Rsync, incremental file list output but no actual copying
I'm running the following command, with the intention of recreating the contents of (sync) on the remote server.
sudo rsync -avrz /path/to/sync/ -e "ssh -i ../keys/my.pem ...
1
vote
1answer
87 views
Using expect to login to amazon server with .PEM file
I need to do the following:
Log into my amazon server
Change to a specific directory and run a script
The script executes an svn up, I need to be able to pass my username and password to this ...
1
vote
2answers
182 views
1
vote
1answer
84 views
Can anyone give me an example of using BouncyCastle to import .pem public DSA key into c#?
I am trying co import a .pem key into c#, and I've found a library, which does that: BouncyCastle
I've created a code, which loads public key and is supposed to load the data into ...
1
vote
1answer
54 views
Public Key Not Recognized
I am trying to export a public key from openssl using python. I have the actual key information transferred to the client from the server but the PEM encoding is not transferred so the key on the ...
1
vote
1answer
331 views
How to use CryptoAPI and CryptImportKey with a ASN.1 PEM OpenSSL Public key
How do I get the CryptoAPI CryptImportKey() function to import a DER ASN.1 PEM file structure? It actually works but CryptDecrypt() returns an error.
// 1. Generate a Public/Private RSA key pair like ...
1
vote
2answers
187 views
Convert CA-signed JKS keystore to PEM
I have a JKS keystore with certicate signed by CA. I need to export it in PEM format in order to use it with nginx. I need to do it in such a way that it includes the whole chain, so that my client ...
1
vote
2answers
273 views
how to get private key from PEM file?
i have a .PEM file that includes public key and a private key for SSL data transfer like this:
-----BEGIN RSA PRIVATE KEY-----
private key data
-----END RSA PRIVATE KEY-----
-----BEGIN ...
1
vote
1answer
196 views
Network setup, SSH connection timeout with AWS and .pem
I'm trying to log into my AWS server via SSH, it's set up with a .pem permissions file for extra security, I've added my IP to the security groups correctly, but when I try to connect, I get an ...
1
vote
0answers
96 views
How can I change key pair in xml format to PEM format in C#?
I've try to change created key pair in xml format to PEM format.
Here is my code.
CspParameters cspParams = new CspParameters();
cspParams.ProviderType = 1;
cspParams.Flags = ...
1
vote
1answer
162 views
OpenSSL's PEM file and Lockbox3 interoperability
I have a RSA key in a PEM file created with openssl, and Im trying to load it into Lockbox3 (a delphi component) but it seems they are not compatible. In their forums I found this:
"Only after you ...
1
vote
1answer
199 views
read pem file, get 63 bytes in DQ parameter
I have a function that need RSA encryption/decryption. With provided .pem file, that contains pair key for RSA. By using Org.BouncyCastle as same as How to read a PEM RSA private key from .NET; or ...
1
vote
1answer
1k views
scp (secure copy) to ec2 instance without password
I have an EC2 instance running (FreeBSD 9 AMI ami-8cce3fe5), and I can ssh into it using my amazon-created key file without password prompt, no problem.
However, when I want to copy a file to the ...
1
vote
1answer
118 views
Extract certificate from HTTPS site
I need to extract the public key (preferably in PEM format) that a site uses to identify itself with.
E.g. a function that takes a URL as an argument (https://www.example.com/), then establish a ...
1
vote
1answer
262 views
Converting from cert8.db to PEM
I am having a cert8.db in /home/hari/Desktop/certs directory. Now I want to convert this into PEM. tried to do this by first trying to export the cert8.db in pkcs12 to pem using pkutil
pk12util -o ...
1
vote
1answer
91 views
what is X.509 and how to use it
what is X.509?
how to use it in REST web service for authentication?
1
vote
1answer
302 views
Loading the Jira Public Certificate in .Net from a string (how to convert ASN.1 encoded SubjectPublicKeyInfo to X509 Cert in .Net)
I am building an oauth 1.0a service that will be consumed by a gadget within Jira, it's a .Net 3.5 Application written in C#.
Jira makes requests to this service using the RSA-SHA1 signature method, ...
1
vote
2answers
368 views
How do I get the keysize of a given CSR in bit?
I`m writing a program in .net(c#), using the Liping Share ASN1 Editor, which decodes the given CSRs very well.
So, my problem is: How do I get the bit size of a given CSR? (i want to test if it is ...
1
vote
1answer
141 views
Why are there forty characters left over in Google's PEM for packing a Chrome extension
I've recently been trying to figure out how to get PyCrypto to recognize PEM's which are produced by Google Chrome's packing process. The problem is that the standard importKey method causes errors. ...
1
vote
0answers
298 views
Strange error with stream_context_set_option
I wanted to connect ssl Server. And I attached ssl certificate with stream_context_set_option.
But it returns "check that your cafile/capath settings include details of your certificate".
$apnsCert ...
1
vote
2answers
2k views
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 encoded file.
Security.addProvider(new BouncyCastleProvider());
SecureRandom rand = new ...
1
vote
2answers
441 views
How would I go about converting a hexadecimal representation of a private key to a OpenSSL supported format(PEM/DER/?)
The title basically says it all.
I have a hexadecimal string representing a private key, and for me to be able to use it with OpenSSL, I need to be able to convert it to some format supported by ...
1
vote
1answer
150 views
How to know whether .pem file is correct or not
I have created a .pem file to be used for Production push notification,
and uploaded in server.
But when sending push notification, it is giving error like this.
$fp = ...
1
vote
1answer
2k views
Convert .PEM certificate to .PFX Programatically using OpenSSL
I've got a .PEM file that I want to convert to a PKCS12 file (PFX) and I know I can easily accomplish this using the following openssl command:
Create a PKCS#12 file:
openssl pkcs12 -export -in ...
1
vote
1answer
835 views
Using M2Crypto to save and load X509 certs in pem files
I would expect that if I have a X509 cert as an object in memory, saved it as a pem file, then loaded it back in, I would end up with the same cert I started with. This seems not to be the case ...
1
vote
1answer
358 views
Active Merchant Paypal Recurring Pem Error Neither Pub Nor Priv Key
I am trying to use ActiveMerchant to make a Paypal Recurring transaction call. I used the patch here:
...
1
vote
1answer
859 views
How can I decrypt encrypted files using a PEM private key?
I have files which have either been encrypted with a public key and the Blowfish algorithm, or a public key and the AES-256 algorithm.
I'm looking to put together a Perl script that would be able ...
1
vote
3answers
2k views
How to access the FirstData web service integration WSDL file?
FirstData has horrendous customer support, but I have to integrate with their Global Gateway web service for a project I'm working on. I'm simply trying to run the Axis2 wsdl2java tool according to ...
1
vote
2answers
295 views
How to use on the same Apache2 Server 2 differents Certificates using VirtualHost?
I get a certificate from Gandi for a domain www.mondomaine.fr
But for sql.mondomaine.fr I wanted to use a Self-Signed SSL certificate.
If I active sql.mondomaine.fr, the www.mondomaine.fr is using ...
1
vote
0answers
128 views
CSP Out of memory with CryptVerifySignature
I have an issue with CryptVerifySignature returning NTE_NO_MEMORY (The CSP ran out of memory during the operation.)
I'm trying to verify an signature generated with OpenSSL, I've already decoded a ...