Questions tagged [libcrypto]

The OpenSSL crypto library implements a wide range of cryptographic algorithms used in various Internet standards. The services provided by this library are used by the OpenSSL implementations of SSL, TLS and S/MIME, and they have also been used to implement SSH, OpenPGP, and other cryptographic standards.

The OpenSSL crypto library implements a wide range of cryptographic algorithms used in various Internet standards. The services provided by this library are used by the OpenSSL implementations of SSL, TLS and S/MIME, and they have also been used to implement SSH, OpenPGP, and other cryptographic standards.

libcrypto consists of a number of sub-libraries that implement the individual algorithms. The functionality includes symmetric encryption, public key cryptography and key agreement, certificate handling, cryptographic hash functions and a cryptographic pseudo-random number generator.

More Deatails

155 questions
0
votes
1 answer

Performing a SHA256 Hash on RIPEMD160 Message Digest

I am trying to perform a SHA256 hash on the message digest of a RIPEMD 160 hash. I am using the OpenSSL library on the Mac platform. The issue I am having is the intermediary process of taking the message digest of the RIPEMD 160 and then…
0
votes
1 answer

OPENSSL incompatible libssl, libcrypto

I am working with openssl library files, anybody could help me with the 64bit precompiled libraries of openssl (RHEL5x64) I have this warning on the libraries i generated. /usr/bin/ld: skipping incompatible /home/devlog/prog/toto/libssl.so when…
0
votes
1 answer

libcrypto throwing error when compiling a shared library

I'm trying to put together a shared library that does a HTTP GET request to a remote server. My library will be loaded by another app and I want to post some statistical data over to a webserver API. My code currently looks like this: void…
Don
  • 1
0
votes
1 answer

Cmake can't find "openssl" "libcrypto" with pkg_search_module

I'm building a project and in the CMakeLists.txt there are a few pkg_search_module statements, including two for openssl and libcrypto which throw errors in the build process. pkg_search_module(LIBXML2 libxml-2.0…
0
votes
1 answer

Debian control file dependencies for a program which depends on libcurl.so, libsqlite3.so, libcrypto.so and libpthread.so

I am having a program which depends on libcurl.so, libsqlite3.so, libcrypto.so and libpthread.so Package: myscript Version: 0.1 Section: utils Priority: optional Architecture: all Essential: no Depends: curl | libcurl3, sqlite3 | libsqlite3-0,…
BusyTraveller
  • 183
  • 3
  • 14
0
votes
2 answers

Error when trying to RSA-decrypt a parameter string with libcrypto

I am a beginner with the libcrypto library. I am trying to give an encrypted string to a function, decrypt it and return it decrypted. The string is encoded with my public key which which is 4096-bit sized. char* decodeStr(const char* str, const…
Badda
  • 1,329
  • 2
  • 15
  • 40
0
votes
1 answer

Testing a custom openSSL engine from the command line

Quick question: How can I verify the functionality of a custom openSSL engine I'm writing from the command line? Right now I am following along with this great tutorial, and am successfully able to exercise the engine (which returns a digest value…
asmvolatile
  • 522
  • 5
  • 22
0
votes
1 answer

configure: error: libcrypto not found

I compile php7 by myself. Download php7 source. yum install libxml2-devel openssl-devel.i686 configure ./configure --prefix=/usr/local/php7 --with-apxs2=/usr/local/apache2/bin/apxs --enable-sockets --with-openssl
Then I got an…
Does
  • 569
  • 6
  • 24
0
votes
1 answer

Compiling git for armhf - encountering "libcrypto.so.1.0.0: no version information available (required by git)"

I am trying to get git to run on my armhf BuildRoot based system. Since git is not in BuildRoot, I went over to my other Debian based armhf system and compiled it from source there with "make prefix=/usr CFLAGS="${CFLAGS} -static-libgcc" (I want a…
SeanLabs
  • 1,739
  • 4
  • 18
  • 22
0
votes
1 answer

Statically link libcurl to project (Still requires DLL)

I'm using Netbeans IDE with C/C++ plugin. My code compiles without any problem. CURL_STATICLIB is defined (-DCURL_STATICLIB also tried #define CURL_STATICLIB). This is all my linked libs. I'm trying to avoid packaging the exe with multiple DLLs, so…
0
votes
0 answers

Thrift cross compiling for ARM

I have configured and installed thrift package in my Linux machine. Now am trying to cross compile thrift for ARM. The steps I followed are : Untar the thrift package Configure using ./configure --host=arm-linux-gnueabi --without-java…
Deeraj Soman
  • 73
  • 1
  • 10
0
votes
2 answers

missing libssl.so.10 when install postgresql92-server postgresql92-contrib

when I install postgresql92-server postgresql92-contrib I met some problem ,the details as below but I can find the libs my linux release as below
Bort
  • 97
  • 1
  • 13
0
votes
1 answer

libcrypto.so.0.9.7: cannot open shared object file

I have searched the net for this question and I'm not getting a proper response. I am running an in-house application which requires libcrypto.so.0.9.7. But I keep getting the following error: error while loading shared libraries:…
Maverickgugu
  • 767
  • 4
  • 13
  • 26
0
votes
3 answers

installing nginx failed CentOS

I got following error while installing nginx on CentOs 6.i googled but could not do anything. Error: Package: nginx-1.4.6-1.el6.ngx.x86_64 (nginx) Requires: libcrypto.so.10(OPENSSL_1.0.1_EC)(64bit)
hrirks
  • 25
  • 2
  • 10
0
votes
0 answers

Linker can't find libcrypto

I am getting a linker error with: /usr/bin/ld: cannot find -lcrypto echo $LD_LIBRARY_PATH gives me /usr/lib In /usr/lib there is a libcrypto.so.1.0.0 And in my gcc line in the Makefile I have a -lcrypto flag added. I am not sure how I can fix this…
A1A2A3A4
  • 413
  • 1
  • 5
  • 11
1 2 3
10
11