Re: unable to write 'Random State' e is 65537

2008-01-09 Thread Wes Kussmaul
deep sky wrote: Can you elaborate a little bit more cause I'm totally new to this openssl. I'm doing this to create encryptions for my paypal buttons You shouldn't need to do that. If you used PayPal's button generating facility, the resulting button sets up a tunnel between your customer's

Regarding the obj_mac.h

2008-01-09 Thread sunil.kumarvvn
Hi, I wrote one C program to read the X509 certificate using OPENSSL functions. And I was trying access the different extensions and their values from certificate. First I am getting the NID of the extension using the below function. --- nid=OBJ_sn2nid(trimmedExtensionName);

s_server with client authentication strange behaviour

2008-01-09 Thread Koza
Hi! I have found that when I run openssl s_server with client authentication: ./openssl s_server -accept 443 -cert m.cer -key mkey.pem -no_dhe -www -CAfile ca.cer -tls1 -verify 1 and then without -verify 1, I see that transmission time are the same (I use Ethereal). How can it be explained?

Problem with blowfish

2008-01-09 Thread danielkun
I'm new to OpenSSL and I've been trying to get the following to work for 2 days now. I'd like decrypt the input file using blowfish and 64 bit blocks. This code below works fine when decoding text files of any size but with images the decoded file is larger than the orginal. I also keep getting

OpenSSL mailing list posting guidelines.

2008-01-09 Thread G.W. Haywood
Hello all, In the absence of moderation and/or a daily digest of the OpenSSL mailing list, and in view of the rather high and apparently increasing volume(/noise level) on the list, here are some options that I can see for me, listed in order of increasing reluctance: 1. Beg for the publication

Re: Problem with blowfish

2008-01-09 Thread ponnusamy p
sir, i have compiled this program in VC++. #include stdlib.h #include stdio.h #include rc4.h int main(void) { char plaintext[12] = Hello World?; char ciphertext[12]; char mykey[16] = this's my secret; RC4_KEY rc4_key; RC4_set_key(rc4_key, 16, mykey); /* the key is 128

Regarding the obj_mac.h

2008-01-09 Thread sunilv
Hi, I wrote one C program to read the X509 certificate using OPENSSL functions. And I was trying access the different extensions and their values from certificate. First I am getting the NID of the extension using the below function. ---

Re: Regarding the obj_mac.h

2008-01-09 Thread Dr. Stephen Henson
On Wed, Jan 09, 2008, [EMAIL PROTECTED] wrote: Hi, I wrote one C program to read the X509 certificate using OPENSSL functions. And I was trying access the different extensions and their values from certificate. First I am getting the NID of the extension using the below function.

Re: unable to write 'Random State' e is 65537

2008-01-09 Thread deep sky
The add to cart Button codes are in html and can be viewed by everyone. so, I need to encrypt them. On Jan 8, 2008 2:30 PM, Wes Kussmaul [EMAIL PROTECTED] wrote: deep sky wrote: Can you elaborate a little bit more cause I'm totally new to this openssl. I'm doing this to create encryptions

RE: Regarding the obj_mac.h

2008-01-09 Thread David Schwartz
The problem is if I give the name of the extension given as in the certificate, What is the name of the extension given as in the certificate? Certificates don't contain extension names. the OBJ_sn2nid function is throwing NULL value that means it is unable to find the extension. Probably

Re: How to create openssl certificate by using only single commands

2008-01-09 Thread Paul Surgeon
On Jan 4, 2008 7:19 AM, Tran Son wrote: Hi all. Whenever i create certificates using openssl i have to type my pass phrase and something else. Now how can i create certificate just using single commands with the pass phrase, country... in the parameter list so i dont have to type them