libssl is the portion of OpenSSL which supports TLS
Questions tagged [libssl]
152 questions
1
vote
1 answer
EMSA_PSS_ENCODE with libssl
Hi I'm trying to use libssl to get some EMSA_PSS_ENCODING through the function RSA_padding_add_PKCS1_type1 in libssl, but I can't find nor docs nor solutions, so this is the example code I've written:
#include
#include
#include…

luiss
- 2,311
- 2
- 17
- 16
1
vote
1 answer
Undefined Reference Errors with libssl and libcrypto
I'm working on an Android platform build with android-4.4_r1 (KRT16S). I can compile the source (it's a big project) into a *.so file without any trouble.
If I try to build the source into a command line executable with include…

GrandAdmiral
- 1,348
- 2
- 24
- 52
1
vote
1 answer
libcrypto.so.10: cannot open shared object file: No such file or directory
I am trying to install ODBC driver for Debian arrording to these instructions: https://blog.afoolishmanifesto.com/posts/install-and-configure-the-ms-odbc-driver-on-debian/
However trying to run:
sqlcmd -S localhost
I get the error…

user1054844
- 922
- 5
- 17
- 34
1
vote
2 answers
libssh + iPhone Implementation with multiple commands execution in sequence
It seems my questions are strange and i'm not getting enough help but I'm back.
I've another strange question which needs to be solved in emergency.
I'm developing an iPhone app. which uses libssh 2 for commands execution through iPhone over remote…

Paresh Thakor
- 1,795
- 2
- 27
- 47
1
vote
0 answers
How to update libssl file on Mac 10.8
I try to install apache+php+mysql environment on my Mac(with Mountain Lion), but the php does not work. Seems like the problem is about the libssl file.
When I try the command
php -v
The system returns
dyld: Library not loaded:…

JLan
- 9
- 2
1
vote
1 answer
Is libssl version 0.9.8e compatible with 0.9.7a?
I'm using a third party static library in my C++ project that has a dependency on libssl version 0.9.7a. Due to various reasons, the libssl version that my project used is 0.9.8e.
Everything was working fine, until the third party made a recent…

Srikanth
- 11,780
- 23
- 72
- 92
1
vote
1 answer
Get AES Key from EVP_CIPHER_CTX
I'm using openssl trying to use an RSA public key, to encrypt an AES key, and use that AES to send large-ish data over HTTP(s) to a 3rd party site. I know that's a lot of encryption, the second layer comes when the network is down, and the data has…

Lee Hambley
- 6,270
- 5
- 49
- 81
1
vote
0 answers
Link to libssl 0.9.8 instead of 0.9.7 in Qt for Mac
I found my application compiled with Qt Creator under Mac (Qt 4.7.4 and Qt 4.8.0) is linked to /usr/lib/libssl0.9.7.
It is giving me a lot of SSL errors when I browse https websites from the application based on QtWebkit. The windows version of Qt…

Stephen Cheng
- 964
- 2
- 11
- 24
0
votes
2 answers
How can I use libssl with Cocoa on Lion?
I'm linking against a static library build from source, and including local headers, not the headers in /usr/include, but Xcode still lists may functions as depreciated, and it's failing to find symbols. Has anyone gotten libssl working on Lion?

Loyal Tingley
- 910
- 1
- 8
- 20
0
votes
0 answers
OpenSSL - Issue with SSL_CTX_build_cert_chain()
I'm attempting to refactor some old C code and run into an issue when compiling:
gcc -c -Wall -g -D_GNU_SOURCE -I/usr/bin/ssl/include cc_tls_verify.c -o cc_tls_verify.o
In file included from cc_tls_verify.c:10:
ssl.h:21:71: error: macro…

sckgh
- 1
0
votes
0 answers
Cannot read data from SSL_read_ex with non-blocking socket
I'm having trouble using SSL_read_ex with non-blocking sockets, especially I'm having trouble when requesting an invalid resource from Google: https://www.google.com/.
What happens is that if I try to do a GET / to google…

jdl
- 1
- 1
- 2
0
votes
0 answers
Why do I keep on getting an error message even though libssl-dev is installed?
I have a rust project that uses the below crate.
reqwest = { version = "0.11.18", features = ["blocking", "json"] }
In order to make it work, I installed "libssl-dev" using the below command in the terminal.
sudo apt install libssl-dev
However,…

Saad
- 33
- 5
0
votes
1 answer
Getting `error while loading shared libraries: libssl.so.1.1` when running docker container
I'm trying to deploy a rust server using docker, but when I try to run the container docker run myapp I get the following error: myapp: error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or…

mori_ahk
- 81
- 5
0
votes
2 answers
Linking with xlC on AIX: Choose a specific library version
I'm trying to dynamically link a C++ application with libssl (and libcrypto) on an AIX development machine using the xlC compiler. The problem is, that the SSL version installed on the development machine differs from the version installed on the…

Athazo
- 51
- 1
- 6
0
votes
0 answers
An error occurred while installing bson (4.15.0), and Bundler cannot continue. When using public.ecr.aws/lambda/ruby:latest Docker
When trying to bundle install in a docker build I am getting this error:
An error occurred while installing bson (4.15.0), and Bundler cannot continue.
I am running a Dockerfile for an aws lambda:
FROM public.ecr.aws/lambda/ruby:latest
COPY Gemfile…

swaff-y
- 21
- 1
- 4