openssl is an open source software package that implements the SSL/TLS protocol, and implements many standard cryptographic functions.

learn more… | top users | synonyms

47
votes
3answers
2k views

Why is there a handshake failure when trying to run TLS over TLS with this code?

I tried to implement a protocol that can run TLS over TLS using twisted.protocols.tls, an interface to OpenSSL using a memory BIO. I implemented this as a protocol wrapper that mostly looks like a ...
26
votes
7answers
8k views

Node.js installation: openssl not installed

I have installed libssl-dev and openssl but I get this when I install node.js: > ./configure && make && make install ...
24
votes
5answers
7k views

Rails 3 - no such file to load — openssl

when running a Rails server, I get the following error: no such file to load -- openssl I try a solution I find online. I go to ~/.rvm/src/ruby-1.9.2-head/ext/openssl. I type : ruby extconf.rb, but I ...
17
votes
7answers
10k views

Building libcurl with SSL support on Windows

I'm using libcurl in a Win32 C++ application. I have the curllib.vcproj project added to my solution and set my other projects to depend on it. How do I build it with SSL support enabled?
15
votes
2answers
2k views

Android in-app purchase server signature verification using php OpenSSL

In an attempt to follow some of the security guidelines for in-app purchase here: http://developer.android.com/guide/market/billing/billing_best_practices.html I am trying to do signature validation ...
14
votes
5answers
20k views

Using openssl what does “unable to write 'random state'” mean?

I'm generating a self-signed SSL certificate to protect my server's admin section, and I keep getting this message from openssl: unable to write 'random state' What does this mean? A quick Google ...
11
votes
4answers
508 views

Where is the PEM file format specified?

I need to parse .PEM files. I know that the standard for "Privacy-enhanced Electronic Mail" is defined in RFCs 1421-24. But they don't seem to mention some text I find inside OpenSSL .pem files (eg. ...
11
votes
4answers
11k views

Ruby on Rails: no such file to load — openssl on RedHat Linux Enterprise

I am trying to do 'rake db:migrate' and getting the error message 'no such file to load -- openssl'. Both 'openssl' and 'openssl-devel' packages are installed. Others on Debian or Ubuntu seem to be ...
10
votes
4answers
3k views

Linking to libcrypto for Leopard?

I am using Mac OS X 10.6 SDK and my deployment target is set to Mac OS 10.5. I'm linking to libcrypto (AquaticPrime requires this) and found out that my app doesn't launch on Leopard. The error is ...
9
votes
3answers
2k views

How do I verify an SSL certificate in python?

I need to verify that a certificate was signed by my custom CA. Using OpenSSL command-line utilities this is easy to do: # Custom CA file: ca-cert.pem # Cert signed by above CA: bob.cert $ openssl ...
9
votes
2answers
3k views

How to create a boost ssl iostream?

I'm adding HTTPS support to code that does input and output using boost tcp::iostream (acting as an HTTP server). I've found examples (and have a working toy HTTPS server) that do SSL input/output ...
9
votes
3answers
6k views

generate sha256 with openssl and C++

I'm looking to create a hash with sha256 using openssl and C++. I know there's a similar post about this here: http://stackoverflow.com/questions/918676/generate-sha-hash-in-openssl, but I'm looking ...
9
votes
7answers
4k views

How do you test a public/private keypair?

Is there an easy way to verify that a given private key matches a given public key? I have a few *.pub, and a few *.key files, and I need to check which go with which. Again, these are pub/key ...
9
votes
3answers
6k views

Programmatically Create X509 Certificate using OpenSSL

I have a C/C++ application and I need to create a X509 pem certificate containing both a public and private key. The certificate can be self signed, or unsigned, doesn't matter. I want to do this ...
8
votes
0answers
72 views

How to properly use the HsOpenSSL API to implement a TLS Server?

I'm trying to figure out how to properly use the OpenSSL.Session API in a concurrent context. E.g. assume I want to implement a stunnel-style ssl-wrapper, I'd expect to have the following basic ...
8
votes
4answers
13k views

How do I install the OpenSSL C++ library on Ubuntu?

I'm trying to build some code on Ubuntu 10.04 LTS that uses OpenSSL 1.0.0. When I run make, it invokes g++ with the "-lssl" option. The source includes: #include <openssl/bio.h> #include ...
8
votes
2answers
8k views

Trouble understanding SSL certificate chain verification

My app uses SSL to communicate securely with a server and it's having trouble verifying the certificate chain. The chain looks like this: Entrust.net Secure Server Certification Authority -> DigiCert ...
8
votes
2answers
8k views

Convert pem key to ssh-rsa format

I have a certificate in der format, from it with this command I generate a public key: openssl x509 -inform der -in ejbcacert.cer -noout -pubkey > pub1key.pub Which results in this: -----BEGIN ...
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
8
votes
5answers
29k views

Converting a Java Keystore into PEM Format

I am trying to convert into Java keystore file into a PEM file using keytool and openssl applicactions. But I could not find a good way to do the conversion. Any idea? Instead of converting the ...
7
votes
1answer
2k views

How do I setup SSL certs on Amazon AWS Load Balancer using Godaddy certificates? -Public key and private cert don't match

I'm trying to install a GoDaddy SSL certificate on a new load balancer I'm setting up on Amazon AWS. I originally created the certificate at Godaddy using the keytool program for direct installation ...
7
votes
1answer
452 views

In-app purchase signature verification with PHP openssl

In an attempt to follow some of the security guidelines for in-app purchase here: http://developer.android.com/guide/market/billing/billing_best_practices.html I am trying to do signature ...
7
votes
1answer
528 views
7
votes
3answers
5k views

INDY 10.1.5 - Which SSL dlls work?

I'm trying to connect to google documents (following Marco Cantu's excellent REST example) but I am getting the following SSL errors: 1) If I use the SSL dlls from openssl-0.9.8i-i386-win32.zip I get ...
7
votes
4answers
5k views

Self Signed Certificate in Windows without makecert?

We have a shrink wrap type Windows server application where we need to create a self signed certificate on the server to be used by some WCF web services. From our searches on the web, it appears ...
7
votes
5answers
3k views

What Certificate Authority Software is Available?

I am running a number of SSL-encrypted websites, and need to generate certificates to run on these. They are all internal applications, so I don't need to purchase a certificate, I can create my own. ...
6
votes
2answers
88 views

8 byte missing on EVP_DecryptFinal

this is my first question so please tell me if I do something wrong :). My problem is I use EVP_DecryptInit(&ctx1, EVP_des_ecb(), tmpkey, NULL); EVP_DecryptUpdate(&ctx1, keysigout, ...
6
votes
1answer
729 views

HTTPS request with Boost.Asio and OpenSSL

I'm trying to read the ticker symbol at https://mtgox.com/api/0/data/ticker.php from my C++ application. I use Boost.Asio and OpenSSL because the service requires HTTPS. Boost version: 1.47.0 ...
6
votes
1answer
449 views

Using public key to verify signature in Node.JS crypto

Is there a good way to validate signatures in Node.JS (v0.4+) with public keys? Current crypto module allows this with certificates but not with public keys. For example: var crypto = ...
6
votes
1answer
146 views

php data encrypted with openssl_seal. How to decode in c#?

I am passing some data (1-2MB) between a php app and a c# program. The info needs to be encrypted and I was using a Rijndael encryption, but encryption was very slow. I am trying to switch to ...
6
votes
1answer
502 views

Extract public Certificate from SMIME Message (pkcs7-signature) with OpenSSL

How can i extract the public certificate from an smime message (pkcs7-signature) with OpenSSL?
6
votes
1answer
921 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 ...
6
votes
6answers
960 views

SSL negotiation failed with svn

I am running a server that accepts https requests. I have generated my own certificate. When going to the site in firefox I get the unknown certificate error, but that's fine. This (I think) indicates ...
6
votes
3answers
273 views

Same C code producing different results on Mac OS X than Windows and Linux

I'm working with an older version of OpenSSL, and I'm running into some behavior that has stumped me for days when trying to work with cross-platform code. I have code that calls OpenSSL to sign ...
6
votes
1answer
386 views

Interoperability between RSACryptoServiceProvider and openSSL

I've used the .NET class RSACryptoServiceProvider to get a keypair: using (RSACryptoServiceProvider rsa = new RSACryptoServiceProvider()) { File.WriteAllText ("PublicKeyOnly.xml", rsa.ToXmlString ...
6
votes
2answers
4k views

AES CTR 256 Encryption Mode of operation on OpenSSL

Im new to OpenSSL, Can anybody give me a hint in how to initialize AES CTR mode from a C file. I know this is the method´s signature but I am having problems with the parameters, there´s not many ...
6
votes
1answer
4k views

verifying a file signature with openssl dgst

I am signing packets in some Java code and I want to verify the signatures on a C server. I want to fork openssl for this purpose (can always use library functions later... when I know openssl can ...
6
votes
1answer
3k views

Digital signature verification with OpenSSL

How can I verify CMS/PKCS #7 messages using OpenSSL in Ruby? PKCS #7 message is used as a digital signature for user messages, so I need to sign a new user message and verify the incoming one. I ...
6
votes
6answers
8k views

How would you test an SSL connection?

I'm experimenting with OpenSSL on my network application and I want to test if the data sent is encrypted and can't be seen by eavesdropper. What tools can you use to check? Could this be done ...
5
votes
0answers
258 views

Using certificate and private key from Windows cert store with OpenSSL

I am trying to make a program, that uses some Web Services in Delphi XE. To connect to the Web Services, i have to use self signed (hope this is correct term) certificate, which is stored in Windows ...
5
votes
3answers
113 views

How to implement OpenSSL functionality in Python?

I would like to encrypt a secret text by public-key and decrypt it by private-key in Python. I can achieve that with the openssl command: echo "secrettext/2011/09/14 22:57:23" | openssl rsautl ...
5
votes
1answer
250 views

Problems getting the Heroku example app for Python run locally with SSL

I started out with having the same problem as in this question. As one of the answers suggests one can avoid that particular problem by making the app run without SSL. But as Facebook is set to ...
5
votes
2answers
296 views

Apple Push Notifications, how do I properly export my cert?

I can't seem to figure out how to properly export my cert for use in my iOS app with push notifications. I'm using the following cert, downloaded from the Certificates section of the iOS Provisioning ...
5
votes
2answers
265 views

Creating a secure, web-based password management system with the ability to share data between users

I apologize in advance for the incoming Wall-O-Text. This is (at least, to me) a fairly complex issue that I've put quite a bit of thought into. You can read my question and also see a test ...
5
votes
1answer
1k views

How to calculate X.509 certificate's SHA-1 fingerprint?

I'm trying to implement an X.509 certificate generator from scratch (I know about the existing ones, but I need yet another one). What I cannot understand is how to calculate the SHA-1 (or any other) ...
5
votes
2answers
366 views

Erlang cryptography module - ECDSA, RSA, SHA256 and so on

I need a module that can generate keypairs, compute secure hashes and crypt and sign data. Is there any that module? Or maybe there is interface for OpenSSL crypto functions ?
5
votes
1answer
200 views

setting SSLContext options in ruby

I need to create an SSLSocket in ruby (1.8+) to talk to an encrypted service. I want to set ssl options on the SSLContext object. (something that eventually calls SSL_CTX_set_options in the underlying ...
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----- ...
5
votes
1answer
586 views

Convert DSA asymmetric key in .NET XML format to PEM format

I have a DSA private key exported using the DSACryptoServiceProvider.ToXmlString, and I need to convert it to PEM format ("file.pem"), so I can open it in PHP using openssl_pkey_get_private function. ...
5
votes
2answers
515 views

JRuby OpenSSL Error

I am having problems configuring JRuby to work properly with OpenSSL. Googling has revealed that this is a pretty common occurence, but none of the solutions I've read have worked for me. Here is my ...

1 2 3 4 5 27