Questions tagged [libssl]

libssl is the portion of OpenSSL which supports TLS

152 questions
6
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
  • 570
  • 1
  • 5
  • 14
5
votes
2 answers

spl-token: error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory

Im having an issue on my aws instance, After running spl-token with any arg, I get the following error spl-token: error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory I thought that maybe it…
plutoniumApples
  • 59
  • 1
  • 1
  • 3
5
votes
2 answers

Broken php and libssl1.1 installation on Ubuntu 16.04

I have been using Ubuntu 16.04. Recently I did some experiments with my PHP installation and I'm afraid I have broken things badly. I tried sudo apt install php7.0 But it's showing a dependency and broken package error Reading package lists...…
Iftieaq
  • 1,904
  • 2
  • 15
  • 26
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
  • 164
  • 8
4
votes
1 answer

Why can't I use `BIGNUM` in this C struct declaration?

I was experimenting with some ~2005 C code (using OpenSSL 0.9.8, I think) and I tried make-ing it with OpenSSL 3.0.2 on Ubuntu 22.04. Minimum example: #include struct fraction { BIGNUM numerator; BIGNUM…
ZP-ZPanda
  • 107
  • 1
  • 10
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,902
  • 3
  • 14
  • 21
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
  • 608
  • 1
  • 6
  • 22
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
  • 147
  • 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
  • 3,156
  • 6
  • 31
  • 55
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
  • 151
  • 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,202
  • 1
  • 8
  • 20
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
  • 2,109
  • 11
  • 31
  • 63
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
  • 787
  • 1
  • 11
  • 20
2
votes
2 answers

Error in installing libssl-dev and libssl1.0-dev in Ubuntu

I am trying to install libssl-dev and libssl1.0-dev in Ubuntu 18.04 via the following command: sudo apt-get -y install build-essential openssl libssl-dev libssl1.0 libgl1-mesa-dev libqt5x11extras5 I am getting the following output: Reading package…
Mobi Zaman
  • 605
  • 1
  • 6
  • 19
1
2
3
10 11