Open source implementation of the Secure Socket Layer (SSL) and Transport Layer Security (TLS) protocols
0
votes
0answers
13 views
Ubuntu 12.0.4 package update failure libssl1.0.0 out of memory error [duplicate]
I am running Ubuntu 12.04.2 LTS and yesterday automatic updates failed on what appeared to be the update of openssl package. I have searched around and found several old q&a's to this package ...
2
votes
0answers
54 views
OpenSSL not picking up CAs in certs folder
We're having trouble with curl not connecting to an HTTPS server:
$ curl https://the-problem-site.com (not the real URL!)
curl: (35) error:14077458:SSL ...
0
votes
1answer
49 views
Accept SSL cert for wrong domain
A site has recycled their SSL cert from another site which is causing me errors on the command line (wget, etc).
They have 2 certs on different parts of the site both issued by the same authority ...
0
votes
0answers
38 views
Python application built on Ubuntu 11.10 not running on 11.04 [closed]
Python application built on Ubuntu 11.10 fails to run on 11.04 with following error,
./main: error while loading shared libraries: libssl.so.1.0.0: cannot
open shared object file: No such file or ...
0
votes
0answers
129 views
How to use SSL with sickbeard and SABznbd?
Has anyone managed to set up SSL with Sickbeard or SABnzbd?
I cannot find a tutorial on how to do it, and I have no experience with SSL either.
Does anyone have any advice/suggestions or has ...
0
votes
0answers
20 views
Problem acessing HMAC file in the openssl library
I'm trying to install openpana project (https://sourceforge.net/projects/openpana/) under my ubuntu 12.04 LTS but it keeps generating an error.
When I type ./configure it is telling me to install ssl ...
4
votes
1answer
218 views
Can't pass PCI scans for vulnerability compliance SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS
I'm trying to pass a pci scan, I'm on Ubuntu 12.04 lts server and Nginx. I've tried everything I know and did a lot of research... apparently seems that need to disable a setting in OpenSSL which I ...
1
vote
1answer
90 views
Can't install w3af
Well i am not able able to install w3af I tired
sudo apt-get install w3af
It says
The following packages have unmet dependencies:
w3af : Depends: python-pyopenssl
E: Unable to correct problems, ...
0
votes
0answers
28 views
Open SSL errors in v1.0.1c and Verisign_Class_3_Public_Primary_Certification_Authority.crt
So I have this strange error in openssl, where in, in Ubuntu 12.10, all requests to servers that have verisign certificates fail due to a certificate error. I went through bug reports to find if the ...
1
vote
1answer
212 views
Bind9 - openssl problem
when I try to start bind9; simply fail because of chroot & openssl
/etc/init.d/bind9 start
log messages;
Feb 17 08:26:27 ISTVS2024 named[2440]: initializing DST: openssl failure
Feb 17 ...
3
votes
1answer
205 views
Ubuntu 12.04 LTS, SSL, IRC: Unable to build with OpenSSL
I have a small server running Ubuntu 12.04 LTS. On it I wanted to set up IRC with SSL support. it appears that ircd-hybrid is most popular. I am not married to using it so other options are welcome. ...
0
votes
0answers
973 views
Error 107 (net::ERR_SSL_PROTOCOL_ERROR): SSL protocol error on localhost
Background:
I set up a cloud server and have have a website running SSL, it was all pretty strait forward following these instructions and following the instructions given by the SSL certificate ...
1
vote
2answers
318 views
Can't find openssl
I'm trying to work with Boost:asio to establish a SSL connection.
Now, my compiler says, it can't find openssl/conf.h
I'd like to know where this path is and how to fix this problem.
Thanks in ...
0
votes
2answers
152 views
Unable to locate package libopenssl1.8
In response to this post http://www.ruby-forum.com/topic/188432, I am trying to install libopenssl1.8, but I get an error:
viggy@ubuntu:~/Documents/github/Core3$ sudo apt-get install libopenssl1.8
...
0
votes
0answers
5 views
SSL development libraries, package dependency error [duplicate]
Possible Duplicate:
Can’t install libssl-dev, dependency problem
I have a fresh Ubuntu install that I wanted to use to learn NodeJs, however when I try to install libssl-dev I get this ...
2
votes
1answer
354 views
Why do I get “undefined reference” errors when linking against OpenSSL?
My compilation process throws around errors like
..undefined reference to `BN_cmp'
although I include <openssl/bn.h>
and run
gcc -lssl -lcrypto test.c -o test
can someone help? (openssl ...
2
votes
0answers
646 views
Enabling SSL in MySQL
I'm running Ubuntu Server 12.04, and I want to enable SSL connections to MySQL.
I've generated the following keys/certs files with OpenSSL:
ca-cert.pem
server-cert.pem
server-key.pem
I stored ...
2
votes
2answers
145 views
Encrypting and decrypting single file with master password and passphrase
Last night my system shutdown unexpectedly and when i restart it, it gave me superblock error. will then i fixed a little but. i was able to retrive my encrypted files which i encrypted my pgp public ...
3
votes
2answers
394 views
Where are PEM files stored for validating SSL certificates?
I am writing a SOAP client application on Ubuntu using OpenSSL and C++. I am having trouble getting my code to validate the server certificate even though it is a world famous betting site that I know ...
1
vote
1answer
724 views
How can I backup and encrypt with tar, split and openssl, all in one command?
I often use tar to backup my stuff in 4 gigabyte chunks to a directory on a FAT32-formatted disk, as documented here.
To get that done, I use the following command: tar -cvpj /path/to/directory/ | ...
0
votes
1answer
314 views
Apache Server SSL Problems
Hi There is this weird problem going on with putting ssl on the server I keep on getting this error in the terminal after I already created the .key and .crt files but it keeps on saying I placed the ...
2
votes
1answer
687 views
What does BuildID SHA1 mean?
I was exploring around in the ubuntu unity terminal window when this came up:
When I typed:
file /bin/ls
the output is:
/bin/ls: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically ...
5
votes
2answers
7k views
How would you install OpenSSL package?
I have trouble finding the package for this software. I built and installed from the packages found here, but it's still not working properly with rvm and gem (log is located here). How would you ...
1
vote
2answers
3k views
Install ruby 1.9.2-p180 via RVM on Ubuntu 12.04
I just upgraded to the newest Ubuntu release and this broke my ruby on rails setup.
I would like to install ruby 1.9.2-p180 now via RVM:
rvm install ruby-1.9.2-p180
This is cancelled due to some ...
7
votes
1answer
359 views
Is there a modern and clear tutorial on setting up SSL for localhost / testing use?
Let's say I'm developing a script for login.example.com. I have absolutely no access to login.example.com, but that page loads a script on assets.example.com (which I have access to). To test how ...
2
votes
1answer
561 views
Why can't I use an OpenSSL key pair with ecryptfs?
According to documentation, I simply create a public/private keypair for ecryptfs using ecryptfs-manager. But there is nothing to select.
$ sudo ecryptfs-manager
eCryptfs key management menu
...
21
votes
4answers
14k views
How do I quickly encrypt a file with AES?
I want to encrypt a file using AES-256. How can I do that quickly and easily, and how can I - or someone else -decrypt it again?
