Questions tagged [libssl]

libssl is the portion of OpenSSL which supports TLS

123 questions
5
votes
3 answers

Tcpdump trace on android - could not load library "libssl.so" needed by "/system/bin/tcpdump"

I need to do tcpdump trace on my android devices. My setup: Push tcpdump file to sdcard adb push filepath/tcpdump /sdcard/tcpdump Copy file to /system/bin Give root privileges to tcpdump file adb shell cd /system/bin su chmod 777 tcpdump Install…
KnightWhoSayNi
  • 520
  • 1
  • 5
  • 13
3
votes
1 answer

Puma server won't start, libssl error - cannot find file

I'm getting the following error when trying to start puma. It is complaining that it cannot load libssl? Any ideas? root@7711398a00ad:/app# bundle exec puma -C config/puma.rb bundler: failed to load command: puma (/bundle/bin/puma) LoadError:…
richflow
  • 1,436
  • 1
  • 6
  • 18
3
votes
0 answers

PHP Error while loading shared libraries: libssl.so.1.0.0: cannot open shared object file: No such file or directory

I am working on a site using Lando and Pantheon and have recently been running into this error: php: error while loading shared libraries: libssl.so.1.0.0: cannot open shared object file: No such file or directory I don't know what caused it to…
Ben Cavenagh
  • 523
  • 4
  • 16
3
votes
0 answers

Link Openssl to MinGW G++ errors

I am having trouble compiling and linking a program using OpenSSL under MinGW and a C++ compiler. These are my headers: #include #include #include #include #include #include…
MeNotMe
  • 127
  • 9
3
votes
0 answers

Verify HTTPS certificate chains using OpenSSL API

I wanted verify HTTPS certificate chains using OpenSSL. After trials and errors, I managed to do this using s_client openssl s_client -connect google.com:https -CApath root < /dev/null where root contains two root CA certs for Google (I'm not sure…
qweruiop
  • 2,678
  • 5
  • 24
  • 48
3
votes
0 answers

Install libssl-dev for Rails on Window 8.1

I'm having this error when running gem tweetstream terminate called after throwing an instance of 'std::runtime_error' what(): Encryption not available on this event-machine I understand it has something to do with my libssl. How do I install…
Victor Yee
  • 161
  • 1
  • 14
3
votes
1 answer

Using libssl in Xcode

I have tried to include openssl (I try to implement a ssh client) and I've added libssl.dylib to my Xcode Project. But I don't know which header I have to include to use it. Can anyone show me a tutorial how to use libssl in Xcode? thanks
kanedo
  • 31
  • 2
3
votes
0 answers

Libssh2 compilation using with-libssl-prefix not working

I have downloaded and compiled the latest version of libssl, the result of which is located at /usr/local/ssl. I want to compile libssh2 using the files in this folder, and to do that I've set the switch "--with-libssl-prefix=/usr/local/ssl". After…
Lopson
  • 1,142
  • 1
  • 7
  • 18
3
votes
1 answer

Depends: libssl0.9.8 (>= 0.9.8m-1) but it is not installable

I'm trying to install nginx (Debian 7, amd64): apt-get install nginx But I get an error: nginx : Depends: libssl0.9.8 (>= 0.9.8m-1) but it is not installable I downloaded the deb and install it: wget…
Mark Korzhov
  • 1,969
  • 10
  • 28
  • 59
3
votes
1 answer

install libssl-dev and libncurses5-dev without root privileges

I am trying to do a prefixed install of Erlang R16B02 on shared server space that is running Ubuntu 13.04. As this is shared space, I don't have root privileges. The system has OpenSSL 1.0.1c installed. After unpacking the tarball, I run configure…
Ampers4nd
  • 767
  • 1
  • 10
  • 19
2
votes
1 answer

Unable to install rabbitmq due to not meeting dependencies: libssl

I want to install rabbitmq on my Ubuntu 18.04. I have been following the official documentation. However, my installation is not completed as I am getting stuck on the step: sudo apt-get install rabbitmq-server -y --fix-missing as I face an error:…
Aviral Srivastava
  • 2,262
  • 11
  • 31
2
votes
1 answer

Handshake Failure with TLS1.2 client and TLS1.3 server

After openssl upgrade to 1.1.1 version, I have a cenario where my client ( odbc) is running at TLS1.2 and my server (database) is running at TLS 1.3 and it fails with following error at client side. "SSL Handshake Failure reason…
2
votes
1 answer

Ruby on Rails cannot find -lssl and -lcrypto when installing the mysql2 gem on Debian

I'm trying to connect ruby on rails with MariaDB at the moment. But for some reason when trying to install the mysql2 gem I'm getting this error: /usr/bin/ld: cannot find -lssl /usr/bin/ld: cannot find -lcrypto What SSL/Crypto library am I missing…
Stefan
  • 37
  • 6
2
votes
0 answers

PHP 5.6 cannot find libssl1.0.2 after update

I've a server with Ubuntu server with ISPConfig. I've installed and configured additional php 5.6 version. After updating ubuntu, I get the following error when I try to run php --version: ./php --version ./php: error while loading shared libraries:…
Deyan Georgiev
  • 321
  • 3
  • 13
2
votes
0 answers

install mongodb: /lib/x86_64-linux-gnu/libssl.so.10: version `libssl.so.10' not found

When i was trying to install the latest mongodb-3.4.1 with tar fils, i encountered the following error: libssl.so.10: cannot open shared object file: No such file or directory then I searched from the net and tried this solution:…
Jianeng Xu
  • 87
  • 1
  • 9
1
2
3
8 9