Sponsored Content
Full Discussion: libcrypto.so.0.9.7
Operating Systems Solaris libcrypto.so.0.9.7 Post 302444047 by flinders1323 on Tuesday 10th of August 2010 08:49:31 PM
Old 08-10-2010
libcrypto.so.0.9.7

Hi Can anyone tell me the use of libcrypto.so.0.9.7 ? I know it is used for SSH. Also is there a way to look into the content of these jars?

Also is there a way to uncompress the same?

i tried

# uncompress libcrypto.so.0.9.7

libcrypto.so.0.9.7.Z: No such file or directory

# jar xvf libcrypto.so.0.9.7


Both didn't work

Last edited by flinders1323; 08-10-2010 at 10:13 PM..
 

2 More Discussions You Might Find Interesting

1. Programming

Linking in OpenSSL libcrypto Statically

I have a C++ program which includes lots of libraries, including openssl libcrypto. In fact, the g++ switches are: -lxml2 -lcrypto -lcurl etc. The problem is that when I try to run it on a different flavor of Linux, it complains that it cannot load libcrypto.so.8. I did some research and... (20 Replies)
Discussion started by: BrandonShw
20 Replies

2. UNIX for Advanced & Expert Users

Curl: fatal: libcrypto.so.1.0.0

Hi, I've installed curl with all despondency but when I try to start it I get: root@xxx> curl ld.so.1: curl: fatal: libcrypto.so.1.0.0: open failed: No such file or directory Killed Looks like I have to change/make symlinks but I don't know how/where. Any idia? ---------- Post... (3 Replies)
Discussion started by: mehrdad68
3 Replies
SMIME_read_PKCS7(3)						      OpenSSL						       SMIME_read_PKCS7(3)

NAME
SMIME_read_PKCS7 - parse S/MIME message. LIBRARY
libcrypto, -lcrypto SYNOPSIS
#include <openssl/pkcs7.h> PKCS7 *SMIME_read_PKCS7(BIO *in, BIO **bcont); DESCRIPTION
SMIME_read_PKCS7() parses a message in S/MIME format. in is a BIO to read the message from. If cleartext signing is used then the content is saved in a memory bio which is written to *bcont, otherwise *bcont is set to NULL. The parsed PKCS#7 structure is returned or NULL if an error occurred. NOTES
If *bcont is not NULL then the message is clear text signed. *bcont can then be passed to PKCS7_verify() with the PKCS7_DETACHED flag set. Otherwise the type of the returned structure can be determined using PKCS7_type(). To support future functionality if bcont is not NULL *bcont should be initialized to NULL. For example: BIO *cont = NULL; PKCS7 *p7; p7 = SMIME_read_PKCS7(in, &cont); BUGS
The MIME parser used by SMIME_read_PKCS7() is somewhat primitive. While it will handle most S/MIME messages more complex compound formats may not work. The parser assumes that the PKCS7 structure is always base64 encoded and will not handle the case where it is in binary format or uses quoted printable format. The use of a memory BIO to hold the signed content limits the size of message which can be processed due to memory restraints: a streaming single pass option should be available. RETURN VALUES
SMIME_read_PKCS7() returns a valid PKCS7 structure or NULL is an error occurred. The error can be obtained from ERR_get_error(3). SEE ALSO
ERR_get_error(3), PKCS7_type(3) SMIME_read_PKCS7(3), PKCS7_sign(3), PKCS7_verify(3), PKCS7_encrypt(3) PKCS7_decrypt(3) HISTORY
SMIME_read_PKCS7() was added to OpenSSL 0.9.5 1.0.1i 2009-07-20 SMIME_read_PKCS7(3)
All times are GMT -4. The time now is 05:05 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy