RE: 9.8a Debug version

2006-03-20 Thread Venkata Sairam
Hi I am encountering certain problems when building it for 9.8a. I am currently able to get only about 30 pdb files for the 9.8a debug version. I believe it is not the complete set as I am not able to perform any debug operations in the openssl code. Can anyone who has build the debug

HELP! A strange PROBLEM when loading a EVP_CIPHER object in my smime application

2006-03-20 Thread li gh
Hi,I am implementing a linux application about smime, it requires loading private-key for decryption. I rewrite the load_key function just the same as OpenSSL. But It returns a NULL pointer.By debugging, I found that an error may occurs when adding ciphers to the hash table. The EVP_CIPHER object

Re: convert untrusted certificate to a trusted one.

2006-03-20 Thread Andrew Madu
Hi Michael, yes I have made a self signed certificate (untrusted) which I want to make trusted if possible. regards AndrewOn 3/20/06, michael Dorrian [EMAIL PROTECTED] wrote: what exactly do you mean?. Have you made a self signed certificate yourself which is untrusted or what type of

Re: 9.8a Debug version

2006-03-20 Thread jimmy
Venkata Sairam wrote: Hi I am encountering certain problems when building it for 9.8a. I am currently able to get only about 30 pdb files for the 9.8a debug version. I believe it is not the complete set as I am not able to perform any debug operations in the openssl code. Can anyone who

pod2man: not found

2006-03-20 Thread Ting Feng
Hi here, I successfully run through make, make test. However, when I try to run make install . I got the following error: ./pod2mantest: pod2man: not found pod2man does not work properly('BasicTest' failed). Looking for another pod2man ... No working pod2man found. consider installing a new

Crypto Library question

2006-03-20 Thread Friedline, Harold
Title: Crypto Library question I am attempting to write code to utilize the crypto(3) library that comes with openssl. Specifically, I am using these functions OpenSSL_add_all_digests(); md = EVP_get_digestbyname(dgst); EVP_DigestInit_ex(mdctx, md, NULL); EVP_DigestInit(mdctx, md);

pod2man question

2006-03-20 Thread Ting Feng
Hi here, I successfully run through make, make test. However, when I try to run make install . I got the following error: ./pod2mantest: pod2man: not found pod2man does not work properly('BasicTest' failed). Looking for another pod2man ... No working pod2man found. consider installing a new

Re: Crypto Library question

2006-03-20 Thread Marek Marcola
Hello The code compiles and links. Using it, however, produces different results than using echo some string | openssl dgst -md5 Echo command adds new line characters. Try someting like echo -n on linux or \c on hpux to disable this. Best regards, -- Marek Marcola [EMAIL PROTECTED]

Re: pod2man question

2006-03-20 Thread Sabahattin Gucukoglu
Hi Ting, On 20 Mar 2006 at 14:21, Ting Feng spoke, thus: [...] Do I need to download a newer version of pod2man? Where to download it? pod2man is part of the mainstream perl distribution. Cheers, Sabahattin -- If an email tells you to forward it to all your friends, please temporarily

Re: pod2man: not found

2006-03-20 Thread Richard Levitte - VMS Whacker
In message [EMAIL PROTECTED] on Mon, 20 Mar 2006 14:05:15 -0700, Ting Feng [EMAIL PROTECTED] said: fengtingting2001 ./pod2mantest: pod2man: not found fengtingting2001 pod2man does not work properly('BasicTest' failed). Looking for another fengtingting2001 pod2man ... fengtingting2001 No working

Re: Crypto Library question

2006-03-20 Thread Girish Venkatachalam
I tried your code and I had a suspicion that using the *_ex() functions along with *() functions can cause trouble. Which is what has happened in your case. Here is the correct code for your reference. You are supposed to stick to either Init_ex() , Final_ex() functions or Init() ,Final()

Re: Crypto Library question

2006-03-20 Thread Dr. Stephen Henson
On Mon, Mar 20, 2006, Friedline, Harold wrote: I am attempting to write code to utilize the crypto(3) library that comes with openssl. Specifically, I am using these functions OpenSSL_add_all_digests(); md = EVP_get_digestbyname(dgst); EVP_DigestInit_ex(mdctx, md, NULL);

RE: 9.8a Debug version

2006-03-20 Thread Venkata Sairam
Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of jimmy Sent: Monday, March 20, 2006 6:20 PM To: openssl-users@openssl.org Subject: Re: 9.8a Debug version Venkata Sairam wrote: Hi I am encountering certain problems when building it for 9.8a. I am currently

openssl.exe test failed

2006-03-20 Thread Budip Ancona Miguel Antonio
Hi, i have installed a windows Server 2003 64 bits standar edition and openssl 0.9.7 but when I test the connection with the command openssl s_client -conecct IpHost:443 it appears the message the ordinal 1051 could not be located in the dinamyc link library libeay32.dll. The question is the

X509_digest() help

2006-03-20 Thread vipin rathor
hi all, i need to fetch the thumbprint of the X509 cert. and for this i'm using X509_digest(). but it is throwing a segmentation fault. any idea how to fix this. this is the code i'm using...void print_thubprint(X509 *cert) { const EVP_MD *md=NULL; unsigned char *buf=NULL;

Re: 9.8a Debug version

2006-03-20 Thread jimmy
Venkata Sairam wrote: Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of jimmy Sent: Monday, March 20, 2006 6:20 PM To: openssl-users@openssl.org Subject: Re: 9.8a Debug version Venkata Sairam wrote: Hi I am encountering certain problems when building it

Re: X509_digest() help

2006-03-20 Thread Girish Venkatachalam
Sorry if I sound too obvious. Actually I think you need to allocate space for the buffer, try with unsigned char buf[4096] or something. I am sure you have tried it ... regards, Girish --- vipin rathor [EMAIL PROTECTED] wrote: hi all, i need to fetch the thumbprint of the X509

RE: make test failure on Intel-based mac

2006-03-20 Thread Ted Mittelstaedt
Build it with assembly language disabled. I wouldn't put it past Apple to have hashed up the linker in Darwin. Or, better yet, use the Apple-supplied gcc to bootstrap the latest gcc and binutils, and build it with that. Ted -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL