libssl is the portion of OpenSSL which supports TLS
Questions tagged [libssl]
152 questions
1
vote
1 answer
"../MacOS/Python is loading libcrypto in an unsafe way" issues loading libssl on MAC m1 bigsur
As the title suggests I am having issues running python-bitcoinlib example code. When I first run I get a permission denied message. I run it as root and I get the following:
WARNING:…

SomethingsGottaGive
- 1,646
- 6
- 26
- 49
1
vote
1 answer
Depends: libssl1.1 (= 1.1.1c-1ubuntu4) on Ubuntu 19.10 [Dependency Error]
I am trying to install libssl-dev on ubuntu 19.10 But i am getting dependency error as
Depends: libssl1.1 (= 1.1.1c-1ubuntu4)
I was trying to upgrade OpenSSH on Ubuntu 19.10.

Ganesh Pandey
- 5,216
- 1
- 33
- 39
1
vote
0 answers
Programmatically get certificate from PKCS12 with nokeys
I am trying to do the equivalent of this openssl command programmatically, which works fine:
openssl pkcs12 -in filename.p12 -nokeys -out output.crt
However, when I try this:
if (PKCS12_parse(p12, "password", &pkey, &x509_cert, nullptr) == 0)…

jwc
- 41
- 2
- 7
1
vote
0 answers
/system/lib/libssl.so (SSL_is_init_finished+7)
this is the crash log,most of crash in android os 8.1.0.
/system/lib/libssl.so (SSL_is_init_finished+7)
1 #00 pc 000194f4 /system/lib/libssl.so (SSL_is_init_finished+7) [armeabi-v7a]
2 #01 pc 000147cb /system/lib/libjavacrypto.so [armeabi-v7a]
3…

xiaofeng long
- 9
- 2
1
vote
1 answer
Renaming libcrypto and libssl
I am trying to compile openSSL such that I can rename the target libraries, i,e. libssl and libcrypto to something like libssl_my and libcrypto_my.
For that I tried following:
Changed few flags like "SHARED_CRYPTO", "SHARED_SSL",…

Ninja Security
- 19
- 3
1
vote
1 answer
How install Homebrew on Mac ? dyld: Library not loaded: @rpath/libssl.1.0.0.dylib
I already read all question on this subject but none are solving the problem, how can I install Homebrew on my Mac with the following error :
dyld: Library not loaded: @rpath/libssl.1.0.0.dylib
Thanks in advance

Alex Germain
- 411
- 4
- 16
1
vote
1 answer
Can't install DeepDive
I am trying to install DeepDive but I am getting this error on my terminal:
dyld: Library not loaded: @rpath/libssl.1.0.0.dylib
Referenced from: /Users/lukedinh/anaconda3/lib/libssh2.1.dylib
Reason: image not found
I'm on macOS 10.14.2 Mojave. I…

Tien Dinh
- 351
- 1
- 12
1
vote
2 answers
OpenSSL C API: How to resume TLS connection after program exec()?
So, here's my dilemma, I'm working on a self-update mechanism in C++, and I can't figure out how to get OpenSSL to accept an int socket that's already been initialized in the previous version, and renegotiate the connection.
I've tried SSL_connect()…

Subsentient
- 554
- 3
- 12
1
vote
0 answers
Why is git2r failing to install?
When I try to install devtools in R via RStudio Server on my Red Hat Linux machine it fails because it cannot install git2r. When I then try to install git2r, it fails to install.
I think it might be because I need to install libssh2 on my Linux…

Ursus Frost
- 405
- 1
- 7
- 14
1
vote
1 answer
Getting error when adding OSSubprocess to my Pharo 6.1 on Centos 7.4x
I wanted to mess around with OSSubprocess (written by Mariano Martinez Peck) from my Pharo 6.1 on my CentOS 7.4.
I searched within the Pharo Project Catalog and tried to install it.
I got an…

tukan
- 17,050
- 1
- 20
- 48
1
vote
1 answer
PyPy does not work on MacOS 10.9.5
I'm trying to install PyPy on MacOS 10.9.5.
As a first try I downloaded a tarball containing the binary files directly from the official website, unpacked it and launched pypy inside bash. I got this:
dyld: Library not loaded:…

Sirion
- 804
- 1
- 11
- 33
1
vote
1 answer
Unable to start mongod : version 'libssl.so.10' not found
So I simply want to run mongod in my Ubuntu 14.04 machine and I cannot do it because the following messages appear:
mongod: /lib/x86_64-linux-gnu/libcrypto.so.10: version `libcrypto.so.10' not found (required by mongod)
mongod:…

Victor Cerqueira
- 36
- 6
1
vote
3 answers
Link error: Cannot find -l
I am developing a C++ project in Ubuntu with kDevelop as the IDE. The project makes use of openssl boost cryptopp libraries. While building the project, I am getting the link error as /usr/bin/ld: cannot find -l/home/anz/openssl-1.0.1j/libssl.a.
As…

Jackzz
- 1,417
- 4
- 24
- 53
1
vote
1 answer
Export Mac app using openssl 1.0.1j
I have just begin develop app for Mac.
Now I have problem with exporting application using latest openssl.
I'm download and make for ".a" and ".dylib" file.
I import it to XCode project.
It runs on my MAC-PC ok. But when I export app for another…

Clover03ti05
- 401
- 1
- 4
- 11
1
vote
1 answer
OpenSSL libssl.so error undefined reference to 'ssl3_cbc_remove_padding'
I am currently patching a older version of OpenSSL to the latest stable 1.0.0o build (via import_openssl.sh)for use with a Android application via the NDK r10c.
While building the libssl.so sharedlibrary i am presented with the following…

azza50
- 82
- 8