How to run CA.all script to generate EAP-TLS certifiate

2005-09-26 Thread ann lee
Hi,all:   I am new to freeradius world. I am trying to setup EAP-TLS using freeradius server. Would you pls tell me which cisco access point is preferred for the EAP-TLS setup?   I have installed openssl-0.9.8 and freeradius-1.0.5 on Redhat 9.0.  I tried several times to generate certificate b

Re: Encryption: Getting Started

2005-09-26 Thread joseph ark
On 9/26/05, Robert Nurse <[EMAIL PROTECTED]> wrote: Hi All,   Could someone suggest a good book for getting started with data encryption?   Thanks.-- "Liberalism is trust of the people, tempered by prudence; conservatism, distrust of the people, tempered by fear."-William Gladstone Try hand book o

PKCS#7 - storing raw data of ECDSA operation

2005-09-26 Thread Karsten Ohme
Hello, I have the raw signature data of a elliptic curve DSA operation from a smart card. In addition I will have a certificate for the public key of the elliptic curve algorithm. I want to store the results as a p7s file. How can this be done? I haven't found any documentation, only the in the p

Encryption: Getting Started

2005-09-26 Thread Robert Nurse
Hi All,   Could someone suggest a good book for getting started with data encryption?   Thanks.-- "Liberalism is trust of the people, tempered by prudence; conservatism, distrust of the people, tempered by fear."-William Gladstone -- Robert Nursehttp://www.ba

Re: Windows BIO operation glitch

2005-09-26 Thread Dr. Stephen Henson
On Mon, Sep 26, 2005, Katie Lucas wrote: > > > Hello. We've been looking at using OpenSSL for various comms things; > we've prototyped the code on UNIX and I've started moving it over to > Windows. > > We're using the binary distributions from Shining Light for Windows > compiling with Borland

Windows BIO operation glitch

2005-09-26 Thread Katie Lucas
Hello. We've been looking at using OpenSSL for various comms things; we've prototyped the code on UNIX and I've started moving it over to Windows. We're using the binary distributions from Shining Light for Windows compiling with Borland C++ Builder 6.0 , the source version from OpenSSL.org for

RE: SSL per session memory usage

2005-09-26 Thread Prashant Kumar
Martin,   Just one caution with changing the buffer sizes. During handshake, if the SSL engine gets a certificate chain, you should have space to handle it! If you do the changes I have done you may not even have to worry about changing the buffer sizes.   I use memory BIOS, and the way you free th

Re: problem with UTF8 encoding

2005-09-26 Thread Dr. Stephen Henson
On Mon, Sep 26, 2005, Dr. Stephen Henson wrote: > On Mon, Sep 26, 2005, Vincent WYON wrote: > > > Hi Victor, > > > > So, if i understood you, i must convert my input string (ISO-8859-1 to > > UTF-8) before passing it to the function X509_Name_add_entry_by_NID. > > I thought that it was the func

Re: problem with UTF8 encoding

2005-09-26 Thread Dr. Stephen Henson
On Mon, Sep 26, 2005, Vincent WYON wrote: > Hi Victor, > > So, if i understood you, i must convert my input string (ISO-8859-1 to > UTF-8) before passing it to the function X509_Name_add_entry_by_NID. > I thought that it was the function which converted my input string to > UTF-8 > > Ok, I

Re: SSL per session memory usage

2005-09-26 Thread Prashant Kumar
Martin,   When I was looking at this, I found that the OpenSsl code uses s3->rbuf and s3->wbuf as scratch buffer. So, what I found is that, once the handshake is complete I could free these buffers safely until we have to send/receive any data on that SSL session. I reallocate s3->rbuf and s3->wbuf

Re: DTLS server doesn't recieve data

2005-09-26 Thread Prashant Kumar
DTLS works fine in OpenSsl when you use socket interface. Look at the s_client and s_server program under apps/ directory. It has code to run the DTLS. You could base your implementation on that.   - Prashant.Manuel Schölling <[EMAIL PROTECTED]> wrote: Hi everybody,I'm going to write a peer2peer-vp

Re: problem with UTF8 encoding

2005-09-26 Thread Victor Duchovni
On Mon, Sep 26, 2005 at 03:16:40PM +0200, Vincent WYON wrote: > So, if i understood you, i must convert my input string (ISO-8859-1 to > UTF-8) before passing it to the function X509_Name_add_entry_by_NID. > I thought that it was the function which converted my input string to > UTF-8 How w

Re: problem with UTF8 encoding

2005-09-26 Thread Vincent WYON
Hi Victor, So, if i understood you, i must convert my input string (ISO-8859-1 to UTF-8) before passing it to the function X509_Name_add_entry_by_NID. I thought that it was the function which converted my input string to UTF-8 Ok, I'll test it Do you know a function (in C language) whic

Re: problem with UTF8 encoding

2005-09-26 Thread Victor Duchovni
On Mon, Sep 26, 2005 at 02:07:40PM +0200, Vincent WYON wrote: > Hi all, > > I want to create some certificates which CN has special french characters > (like ?, ? or ?...). When I called the function X509_Name_add_entry_by_NID > with this special string (like "Fr?d V?l?"), it returns an error.

problem with UTF8 encoding

2005-09-26 Thread Vincent WYON
Hi all,   I want to create some certificates which CN has special french characters (like é, è or à...). When I called the function X509_Name_add_entry_by_NID with this special string (like "Fréd Vàlè"), it returns an error. After debugging the application, i found that it's the function UTF