libssl is the portion of OpenSSL which supports TLS
Questions tagged [libssl]
152 questions
2
votes
1 answer
Install libssl0.9.8 package
I need to install libssl0.9.8 package on my 64 bit centos 6.3 machine.I tried doing this by using this command:
sudo yum install libssl0.9.8. I am getting the following error:
No package libssl0.9.8 available. Error: Nothing to do
How do I proceed…

Autumn
- 339
- 5
- 19
2
votes
0 answers
How to upgrade libssl0.9.8 to install php5-fpm
I need to setup php on server where ROR and nginx are already configured .
When I am installing php5-fpm then there are one package libssl0.9.8 version dependency.
I have searched a lot and tried to remove and re-install package libssl0.9.8 but…

Vik
- 5,931
- 3
- 31
- 38
1
vote
3 answers
openssl libs in Xcode 4
as the title suggests, I'm struggling to make the inclusion of openssl libs in my xcode iOs project, such as:
#include
#include
#include
if anyone knows a good way to do it, that would be more…

holographix
- 2,497
- 2
- 32
- 46
1
vote
1 answer
Why do I get undefined reference errors with gcc -static linking
I'm trying to compile libpcap and libssl statically (with -static) and linker get me these errors:
more undefined references to `ASN1_const_check_infinite_end' follow myprogram line 0, external location: /lib64/libssl.a(ssl_asn1.o)
more…

user1106291
- 13
- 4
1
vote
0 answers
ssh2_connect (libssl.so) with XAMPP on Mac
Would anyone know how to add the ssh2_* functions (libssl.so) to XAMPP under Mac (Lion?)
Any help is appreciated.
Thanks

Tamas
- 10,953
- 13
- 47
- 77
1
vote
0 answers
CryptoLock issue with multiple instance of same binrary
I am using
http://www.openssl.org/docs/crypto/threads.html
to make crypto library thread safe. It is working find if I am linking with static library of libssl and libcrypto.
But if I am linking with dynamic version of the library and running…

Vivek Goel
- 22,942
- 29
- 114
- 186
1
vote
1 answer
C code encrypted file cannot be decrypted using openssl
This is the code that encrypts the file test.txt to test.enc.
Key pair key.pem and key.pub was generated using openssl:
openssl genrsa -out key.pem
openssl rsa -in key.pem -out key.pub -pubout
#include
#include
#include…

Ivan Nikolsky
- 15
- 4
1
vote
1 answer
How do I include libssl.so in my docker image?
I am trying to create a simple docker image on top of a Ubuntu base image.
I have a small server program (single executable file) built by g++. The program uses openssl and it works well in my Ubuntu.
Now I want to put the program in a docker image…

Zhou
- 633
- 5
- 16
1
vote
1 answer
How to print libssl and libnspr version from c++ code?
How can I print the version of libssl and libnspr in c++ code ?
I want to print version for both defined in header and library .

Vivek Goel
- 22,942
- 29
- 114
- 186
1
vote
0 answers
Yocto Honister + cargo-native = missing openssl
Trying to build recipe cargo-native (from openembedded-core layer) in Yocto Honister. Compiler tells me that:
Failed to find OpenSSL development headers., specifically:
| running:…

M.K.
- 89
- 3
1
vote
1 answer
Getting error installing mongodb on ubuntu 22.x
The following packages have unmet dependencies:
mongodb-org-mongos : Depends: libssl1.1 (>= 1.1.1) but it is not installable
mongodb-org-server : Depends: libssl1.1 (>= 1.1.1) but it is not installable
E: Unable to correct problems, you have held…

Shohedul
- 163
- 1
- 6
1
vote
1 answer
Delphi Android app: Could not load SSL Library
I am developing an Android 32-bit app in Delphi. I need to use OpenSSL libraries in my app in order to connect to an MQTT broker.
I am using OpenSSL 1.0.2t armeabi-v7a libcrypto.a and libssl.a static libraries. Through Delphi's Deployment Manager, I…

Miguel Mar
- 11
- 1
1
vote
1 answer
libssl1.1 dependency conflict on Ubuntu 21.10
I'm new to ubuntu and I'm trying to install nodejs npm but I get the error:
The following packages have unmet dependencies:
libssl-dev : Depends: libssl1.1 (= 1.1.1l-1ubuntu1) but 1.1.1l-1ubuntu1.1 is to be installed
E: Unable to correct problems,…

Roshan Shrivastava
- 11
- 1
- 6
1
vote
1 answer
Different hash values for identical input using different OpenSSL evp.h functions
Using the following code, why do I get different hash values?
#include
#include
#include
# define SHA256_DIGEST_LENGTH 32
using namespace std;
static void hex_print(const char *name, const unsigned char…

Siedler
- 77
- 1
- 12
1
vote
1 answer
Cannot install ruby because missing libssl1.0-dev and libssl-dev however cannot install them either
TLDR
I cannot install ruby because I am getting the Error: libssl-dev and libssl1.0-dev missing
Full error below:
rvm install ruby-2.6.3
Installing required packages: libssl-dev....
Error running 'requirements_debian_libs_install…

Randy
- 21
- 3