Questions tagged [libssl]

libssl is the portion of OpenSSL which supports TLS

152 questions
271
votes
5 answers

How to install wget in macOS?

I try to install wget in MAC OS 10.11.1 but when I run ./configure --with-ssl=openssl I get this error: configure: error: --with-ssl=openssl was given, but SSL is not available. How to resolve this problem in OSX 10.11.1?
cfranco
  • 3,155
  • 5
  • 19
  • 20
44
votes
4 answers

Encryption/decryption doesn't work well between two different openssl versions

I've downloaded and compiled openssl-1.1.0. I can encrypt and decrypt using the same exe of openssl (as is here) me@ubuntu:~/openssl-1.1.0$ LD_LIBRARY_PATH=. ./apps/openssl aes-256-cbc -a -salt -in file.txt -out file.txt.enc enter aes-256-cbc…
hudac
  • 2,584
  • 6
  • 34
  • 57
29
votes
3 answers

Any good examples on programming using libssl?

I was wondering whether someone knows any good examples of using libssl as a programming library. Its kind of annoying only digging through the code of libssl trying to make sense of it.
eeknay
  • 453
  • 1
  • 4
  • 8
23
votes
16 answers

openssl: error while loading shared libraries: libssl.so.3

it doesn't matter what I type in combination with 'openssl', I always get the following error message: 'openssl: error while loading shared libraries: libssl.so.3: cannot open shared object file: No such file or directory' I have no idea how to…
M. L.
  • 497
  • 1
  • 4
  • 8
19
votes
6 answers

How do I run psycopg2 on El Capitan without hitting a libssl error

I've got a python django dev setup on my mac and have just upgraded to El Capitan. I've got psycopg2 installed in a virtualenv but when I run my server I get the following error - django.core.exceptions.ImproperlyConfigured: Error loading psycopg2…
Aidan Ewen
  • 13,049
  • 8
  • 63
  • 88
18
votes
8 answers

Libssl and libcrypto causing dyld: Library not loaded: /usr/lib/libpq.5.dylib

I recently uninstalled postgresql and installed pyscopg2 via pip. I know there's some trickery involved with libcrypto and libssl Currently i have them symlinked to: $ ls -lah libssl.* -rwxr-xr-x 1 root wheel 402K Aug 28 11:06…
xjq233p_1
  • 7,810
  • 11
  • 61
  • 107
17
votes
2 answers

Compiling C programs using libssl on OS X El Capitan?

I have a simple C program using libssl. On Linux, I installed the openssl-dev package and compiled the program with the following line: gcc test_libssl.c -o test_libssl -lcrypto -lssl Now I would like to do the same on my Mac. The same line…
langlauf.io
  • 3,009
  • 2
  • 28
  • 45
17
votes
3 answers

uWSGI can not load libssl.1.0.0.dylib

When I call uwsgi, it always shows the following: dyld: Library not loaded: libssl.1.0.0.dylib Referenced from: /Users/xingshi/anaconda/bin/uwsgi Reason: image not found Trace/BPT trap: 5 Here is all the libssl.1.0.0.dylib on my Mac: $ locate…
Xing Shi
  • 2,152
  • 3
  • 21
  • 32
15
votes
3 answers

no version information available

I'm using Ubuntu 12.04 - server and consistently getting: /usr/lib/libcrypto.so.1.0.0: no version information available (required by /usr/lib/libpython2.7.so.1.0) and /usr/lib/libssl.so.1.0.0: no version information available (required by…
tanwedar
  • 211
  • 1
  • 3
  • 8
10
votes
7 answers

mongod: error while loading shared libraries: libssl.so.10 libcrypto.so.10

Problem I downloaded the mongodb 3.0.7 tar files. Then I added the bin directory to my path: export PATH=/bin:$PATH Then when I run the mongodb server: mongod --fork --logpath "/home/me/mongolog" --dbpath…
Hadi
  • 5,328
  • 11
  • 46
  • 67
8
votes
2 answers

AWS Lambda Python libssl C Library

I am trying to make a deployment package for the service Pusher in Python on AWS Lambda. When I run simple code like this from pusher import Pusher def pusherTest(context, event): mypusher = Pusher(app_id=u'***', key=u'***', secret=u'***') …
jamesmpw
  • 515
  • 5
  • 16
7
votes
4 answers

installing libssl0.9.8 on debian 7

I'm trying to install uTorrent on debian 7 but every time I tried to run it got this error message : error while loading shared libraries: libssl.so.0.9.8: cannot open shared object file: No such file or directory I think that it no longer…
hamedkh
  • 909
  • 3
  • 18
  • 35
7
votes
3 answers

How do I compile a binary which works with both libcrypto.so.0.9.8 and libcryto.so.1.0.0?

I have an autotools C project. How do I compile a binary which works with both libcrypto.so.0.9.8 and libcryto.so.1.0.0? (i.e. Ubuntu 9.10 and 12.04) Depending on the age of the OS on which I do the build, the binary requires one version or the…
fadedbee
  • 42,671
  • 44
  • 178
  • 308
6
votes
3 answers

E: Package 'libssl1.1' has no installation candidate

sudo apt-get install libssl1.1 Reading package lists... Done Building dependency tree... Done Reading state information... Done Package libssl1.1 is not available, but is referred to by another package. This may mean that the package is missing, has…
Piyush Prajapati
  • 449
  • 1
  • 4
  • 7
6
votes
0 answers

How to install libssl-dev for OpenSSL 1.0.2a version on Ubuntu 14.04?

The command apt-cache policy libssl-dev shows the following output: libssl-dev: Installed: (none) Candidate: 1.0.1f-1ubuntu2.11 Version table: 1.0.1f-1ubuntu2.11 0 500 http://mirrors.digitalocean.com/ubuntu/ trusty-updates/main…
Erik
  • 14,060
  • 49
  • 132
  • 218
1
2 3
10 11