Questions tagged [openssl]

OpenSSL: The Open Source Toolkit for SSL and TLS

OpenSSL is an open source project which develops software for Secure Sockets Layer (SSL v2/v3), Transport Layer Security (TLS v1), as well being a full-strength general purpose cryptography library.

OpenSSL provides both a library (for use within your own program), and a series of command line tools for common tasks.

1601 questions
0
votes
1 answer

HTTPS but don't share certficate, manual installation required

Is it possible, from a server level (Apache), to enable HTTPS but that we don't share the certificate via the browser, the certificate must be installed prior to accessing HTTPS via the browser? Best Regards Anders.
Anders
  • 283
  • 1
  • 4
  • 12
0
votes
3 answers

cannot load such file -- OpenSSL (LoadError)

I'm having an issue with an uncooperative EC2 Ubuntu 10.04 4 LTS instance. I'm trying to install a few prerequisites for a Ruby web app which has the following dependencies: require 'rubygems' require 'webrick/https' require 'OpenSSL' require…
upbeat.linux
  • 275
  • 4
  • 12
0
votes
1 answer

nginx configuring help required

I have installed nginx with only SSL at http://sub.domain.com with docroot /home/webroot/ Users who login upload files to /home/webroot/uploads/ I want the folder /uploads only to be accessible through HTTP also for external users. The main user…
0
votes
1 answer

thin server with GoDaddy ssl - access from osx

I have a thin server that i run with a certificate from GoDaddy and a private key i created before. I also have a file "gd_bundle.crt" that's probably required for access from osx (or iphones). thin only accepts my certificate and private key but i…
Rafa
  • 105
  • 2
0
votes
1 answer

Ruby/Passenger stops working after update to OpenSSL

Someone has run a yum update on the CentOS box (Linux 2.6.28.1-xxxx-std-ipv4-32 #2 SMP Fri Jan 30 09:55:02 UTC 2009 i686 i686 i386 GNU/Linux) that runs a Ruby on Rails app (Redmine) served with Passenger (Phusion Passenger version 3.0.7). As a…
François Beaune
  • 133
  • 1
  • 1
  • 6
0
votes
4 answers

SSL/TLS Version in Nginx

I installed Nginx and enabled SSL. server { server_name vorb.de; listen 443; root /var/www/vorb.de/pub; ssl on; ssl_certificate cert.pem; ssl_certificate_key cert.key; gzip on; […] } Everything is…
pvorb
  • 1,050
  • 3
  • 11
  • 16
0
votes
2 answers

OpenSSL configuration for PHP on Apache not working

(I copied this over from stackoverflow because a PHP question is probably better suited for this place) I need OpenSSL working on an Apache 2 Webserver with PHP in order to use a combination of Moodle and Mahara with SSO. The Server is running…
Lars
  • 113
  • 4
0
votes
1 answer

Verify and authenticate digital certificates from trusted CA with Apache+mod_ssl

I set a test server with a self signed SSL certificate and http-authentication with personal digital certificates issued by my test CA and everything works fine. What if I want to authenticate users that have a digital certificate issued by several…
0
votes
1 answer

Generating SSL certificates

I use following commands to create certificates and private keys: ./CA.pl -newca ./CA.pl -newreq-nodes ./CA.pl -signreq And I set newcert.pem and newkey.pem as local certificate and private key to the server. demoCA/cacert.pem is public…
david
  • 1
0
votes
3 answers

SSL troubles - Generate .key from .crt? (AlphaSSL)

This is greatly troubling me, I have generated a .csr and .key file to send to dynadot (which sends that to AlphaSSL) with this command: openssl req -out foo.com.csr -new -newkey rsa:2048 -nodes -keyout foo.com.key It had asked me for confirmation…
Alexander
  • 207
  • 1
  • 3
  • 11
0
votes
3 answers

ssl and signing request question

I need to generate an ssl csr for a wildcard certification which I can do using openssl and ssh (I don't use any web based control panels such as cPanel). Now I'll be getting a new server next week so my question is if I generate a CSR and get an…
Joe
  • 35
  • 3
0
votes
3 answers

I keep getting OpenSSL Header Version not found error when compiling OpenSSH Debian Squeeze

I built Openssl1.0.0d ./config shared no-threads zlib It installed fine to the default /usr/local/ssl I went and downloaded OpenSSH 5.8p2 and ran ./configure but now it keeps giving me a Openssl version header not found error even when I set…
Dustin Kingen
  • 113
  • 1
  • 1
  • 7
0
votes
1 answer

https not working with apache2

can anyone tell me how I can implement SSL in apache. I mean the code that have to be written in virtual host file for using https. Actually I had generate dummy certificate for testing, but with my virtual host file coding it's not working. So,…
Lokesh Paunikar
  • 123
  • 1
  • 4
0
votes
1 answer

Creating an MS Certificate Authority using CA Root Certificate created with OpenSSL

Using the guide here: http://www.davidpashley.com/articles/cert-authority.html I have create a certificate authority using OpenSSL. However I would now like to use the Microsoft CA instead. The question is, is it possible to "import" the root/sub…
0
votes
2 answers

How to get httrack to work with SSL on mac os x? (libssl.so not found)

I'm trying to use httrack website copier but the program is running and reporting "no-ssl" (ie: it does not have the capability to copy secure sites). From looking over this thread, it seems that the problem is either when I make & configure the…
cwd
  • 2,763
  • 9
  • 33
  • 48