Does OpenSSL 0.9.7d supports ISo-8859-15 character set?

2008-12-16 Thread Bhalchandra Deshmukh
HI, Does OpenSSL 0.9.7d supports ISO-8859-15 character set ? Is there any flag that needs to set for supporting this charset ? Please do reply. With Regards Bhalchandra Deshmukh

Re: Elliptic curves + openssl

2008-12-16 Thread chrystelle
Hi! How can I use elliptic curve algorithm from opnessl with OPNET simulator??? Thanks in advance chrystelle wrote: Hi! I would like to know how can I use the elliptic curves's algorithms with openssl? Thanks -- View this message in context:

speaking of padlock engine

2008-12-16 Thread Andy Polyakov
Does anybody have VIA Nano-based system? VIA Nano is the one implementing x86_64. Naturally system running 64-bit OS? A. __ OpenSSL Project http://www.openssl.org Development Mailing List

Re: [PATCH RFC] Add support to Intel AES-NI instruction set for x86_64 platform

2008-12-16 Thread Andy Polyakov
The cipher and digest support is at the granularity of nids, and these combine algorithm, key-length, and mode. So if you implement support for those cipher,length,mode combinations that can be accelerated by AES-NI, your engine will only be invoked for those combinations. You're not obliged to

Re: [PATCH RFC] Add support to Intel AES-NI instruction set for x86_64 platform

2008-12-16 Thread Andy Polyakov
Implementation aiming to complement interface exposed by crypto/aes/asm should allow for non-16-byte-aligned key schedule. Period. One can use movups, or check alignment and choose between movups and movaps code paths, or copy key schedule to aligned location on stack. Should it be considered

Re: [CVS] OpenSSL: openssl/crypto/ crypto-lib.com install.com openssl/engi...

2008-12-16 Thread Geoff Thorpe
On Tuesday 16 December 2008 05:54:28 Richard Levitte wrote: OpenSSL CVS Repository http://cvs.openssl.org/ __ __ Server: cvs.openssl.org Name: Richard Levitte He's bck! :-) How's things?

Re: [CVS] OpenSSL: openssl/crypto/ crypto-lib.com install.com openssl/engi...

2008-12-16 Thread Geoff Thorpe
Oops, chalk up another victim to reply-to ... sorry for the noise (and the follow-up noise of this apology). Cheers, Geoff On Tuesday 16 December 2008 14:52:34 Geoff Thorpe wrote: On Tuesday 16 December 2008 05:54:28 Richard Levitte wrote: OpenSSL CVS Repository http://cvs.openssl.org/

RE: Realligning const void *data variables into 32-bit boundaries

2008-12-16 Thread Dave Thompson
From: owner-openssl-...@openssl.org On Behalf Of Ger Hobbelt Sent: Sunday, 14 December, 2008 14:18 snip some What I was trying to attain was a 'correction offset', derived from the originally unaligned pointer, and add that to the pointer (while having it cast as a byte* pointer so offsets

Re: [CVS] OpenSSL: openssl/crypto/ crypto-lib.com install.com openssl/engi...

2008-12-16 Thread Richard Levitte
In message 200812161452.34284.ge...@geoffthorpe.net on Tue, 16 Dec 2008 14:52:34 -0500, Geoff Thorpe ge...@geoffthorpe.net said: geoff On Tuesday 16 December 2008 05:54:28 Richard Levitte wrote: geoffOpenSSL CVS Repository geoffhttp://cvs.openssl.org/ geoff geoff

Re: [PATCH RFC] Add support to Intel AES-NI instruction set for x86_64 platform

2008-12-16 Thread Huang Ying
On Tue, 2008-12-16 at 21:30 +0800, Andy Polyakov wrote: Implementation aiming to complement interface exposed by crypto/aes/asm should allow for non-16-byte-aligned key schedule. Period. One can use movups, or check alignment and choose between movups and movaps code paths, or copy key

Re: [PATCH RFC] Add support to Intel AES-NI instruction set for x86_64 platform

2008-12-16 Thread Huang Ying
On Tue, 2008-12-16 at 19:12 +0800, Andy Polyakov wrote: The cipher and digest support is at the granularity of nids, and these combine algorithm, key-length, and mode. So if you implement support for those cipher,length,mode combinations that can be accelerated by AES-NI, your engine will