Questions tagged [libssl]

libssl is the portion of OpenSSL which supports TLS

152 questions
0
votes
1 answer

OpenSSL generates non-deterministic signature on CSR using P-256 or P-384 key, but not RSA key?

When I use openssl's command line to generate an RSA-2048 keypair, and then construct two Certificate Signing Requests (CSRs) for identical domain names using identical private keys, I get identical output. $ openssl genrsa -f4 -out rsa.key | head…
Quuxplusone
  • 23,928
  • 8
  • 94
  • 159
0
votes
0 answers

link libssl got undefined reference error after upgrading ubuntu 18.04

My build works correctly before, but after upgrading ubuntu 18.04, it is wrong now. c++ ... main.cc.o -o bin/bcDebug -rdynamic -pthread -lcppcms -lbooster -lboost_system -lmongocxx -lbsoncxx -lcryptopp…
Dean Chen
  • 3,800
  • 8
  • 45
  • 70
0
votes
1 answer

UWSGI for https configuration is not working

UWSGI Version- 2.0.18 Openssl- 1.0.2k-fips Python 2.7 Getting Error: uwsgi: error while loading shared libraries: libssl.so.1.0.0: cannot open shared object file: No such file or directory
Ankit Adlakha
  • 1,436
  • 12
  • 15
0
votes
0 answers

getting same error after upgrading pyopenssl ImportError: No module named _util

i have upgraded pyopenssl but still getting the same error. python 2.7 Name: pyOpenSSL Version: 0.13 Location: /usr/lib/python2.7/dist-packages from OpenSSL._util import lib as pyOpenSSLlib ImportError: No module named _util
anaymous
  • 21
  • 8
0
votes
1 answer

openSSL read/write thread safety

We have service using openSSL version 1.0.2h in multi threaded environment. First thread runs blocking read, the other one is doing periodical writes. It crashes from time to time somewhere inside libssl.so in SSL_write function. Code calling…
incognito
  • 457
  • 5
  • 19
0
votes
1 answer

erlang on 64bit ubuntu

First, there is not specif 64bit download FOR ERLANG When I tried to make with crypto enabled, I get this error make[2]: Entering directory `/home/axon/erlang-src/otp_src_R14B01/lib/crypto' === Entering application crypto make[3]: Entering directory…
Akintayo Olusegun
  • 917
  • 1
  • 10
  • 20
0
votes
2 answers

AWS EC2 CenterOS : libssl.so.10: cannot open shared object file

I hope there will be a warrior. I'm deploying my rails project on AWS EC2. System type: Cent OS ERROR: brew install mysql I'm using linuxbrew to install mysql but it gives me make error I installed rvm, rails, mysql(using yum not brew)... The…
Crazy Pioneer
  • 33
  • 1
  • 10
0
votes
1 answer

mysqldump can't load libss

I am trying to dump tables in a database into a file using mysqldump. however I encountered bash-3.2$ /usr/local/var/mysql/virkdb/mysqldump --host=localhost --port=3306 -u root --databases virkdb --result-file=dump.sql dyld: Library not loaded:…
Areza
  • 5,623
  • 7
  • 48
  • 79
0
votes
1 answer

Undefined reference errors for openssl for a haskell repository

I'm completely new to Haskell. I'm trying to get https://github.com/wireapp/mls-server project to build. When I run make build, I get undefined reference errors: Linking…
fraiser
  • 929
  • 12
  • 28
0
votes
2 answers

wkhtmltoimage: QsslSocket

I wanted to generate a HTML to an image, but I god this error: The exit status code '1' says something went wrong: stderr: "Loading page (1/2) [> ] 0% [======> ] 10% QSslSocket: cannot resolve CRYPTO_num_locks QSslSocket: cannot resolve…
Feralheart
  • 1,881
  • 5
  • 28
  • 59
0
votes
1 answer

curl: error while loading shared libraries: libssl.so.1.0.2: cannot open shared object file: No such file or directory

I tried to install MySQL 8 and ended up having this issue when i restarted, now, i can't use curl etc on the system OS Info Ubuntu 14
0
votes
1 answer

cassandra cpp driver dev 2.9.0-1 wont install on Debian Stretch?

I am trying to install the cassandra cpp driver dev 2.9.0-1 on Debian Stretch. But it depends on libssl.so.1.0.0 & libcrypto.so.1.0.0. Debian Stretch however only comes with libssl.so.1.0.2?
0
votes
1 answer

Can't import MySQLdb in python flask, Symbol not found: _syslog$DARWIN_EXTSN

Sytem :MAC OS 10.13 Python 3.7 import MySQLdb
Traceback (most recent call last):
File "", line 1, in
File
"/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/MySQLdb/__init__.py", line…
0
votes
1 answer

Docker base image for perl; E: Package 'libssl1.0.0' has no installation candidate

I have a dockerfile that uses perl:5.22 as the base image When I do: #Dockerfile: From perl:5.22 RUN apt-get update && apt-get install libssl1.0.0 libssl-dev I get this error: When I do: sudo apt-cache policy libssl1.0.0 in the dockerfile, like…
pelican
  • 5,846
  • 9
  • 43
  • 67
0
votes
1 answer

compiling with libssl does not work

I have a very simple code: #include int main() { SHA_CTX sha1; SHA_Init(&sha1); } I have installed both libssl-dev and libcrypto++-dev: However I have a build failure using the following command: $ gcc -lcrypto -lssl…
milaniez
  • 1,051
  • 1
  • 9
  • 21