Questions tagged [libssl]

libssl is the portion of OpenSSL which supports TLS

123 questions
175
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
  • 2,133
  • 5
  • 16
  • 20
41
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,138
  • 3
  • 24
  • 46
28
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
  • 343
  • 1
  • 3
  • 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
  • 11,754
  • 8
  • 57
  • 80
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
  • 1,984
  • 3
  • 16
  • 31
16
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…
gogo_gorilla
  • 2,547
  • 1
  • 22
  • 34
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
8
votes
6 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
  • 4,160
  • 9
  • 42
  • 62
7
votes
3 answers

AWS Lambda Python libssl C Library

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
  • 425
  • 3
  • 15
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
  • 849
  • 2
  • 17
  • 34
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
  • 37,386
  • 39
  • 142
  • 236
7
votes
3 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…
disappearedng
  • 6,800
  • 9
  • 53
  • 100
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
  • 11,695
  • 42
  • 119
  • 194
5
votes
5 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.
  • 101
  • 1
  • 2
  • 6
5
votes
2 answers

Manage multiple RSA keys/certs in a PKCS#12 structure

I try to manage in a C library multiple RSA keys and certificates in a PKCS#12 structure. Managing a single key with the primitives PKCS12_create and PKCS12_parse works fine, but I can't find anything about managing multiple keys. I tried to use the…
Yann Delanoe
  • 119
  • 7
1
2 3
8 9