Use of SSE3 and L2 cache

2010-04-30 Thread grarpamp
Does OpenSSL make specific use of either of these CPU features? And what functions or algorithms of OpenSSL would benefit? My use case is primarily AES as commonly used with disk encryption but not limited to that. Unrelated to OpenSSL would be whether the kernel crypto(4|9) frameworks of things

OCSP_RESPI_free

2010-04-30 Thread Jose Stein
Hello, Does anyone know where OCSP_RESPID_free() is defined? Thanks

RE: how to generate relatively prime numbers

2010-04-30 Thread muellste
> denot...@libero.it wrote on Friday, April 30, 2010 9:30: >> >> I need to generate a BIGNUM C that is relatively prime >> with a BIGNUM N( GCD(N,C)=1 ) >> is there a pre-built function in openssl library ?? > > > You can do it in a simple loop like > > do{ > BN_generate_prime_ex(C,bits,0,NU

Signing RDP files

2010-04-30 Thread ray klassen
I'd like to use a certificate based on my own CA to sign all of my rdp files for a Windows 2008 Server. I've got the root and an intermediate certificate imported into the 'local computer' store of the server, and while I'm able to effectively use the same process for creating and signing a 'CAC

R: Re: how to generate relatively prime numbers

2010-04-30 Thread denot...@libero.it
Thanks. >Messaggio originale >Da: victor.ducho...@morganstanley.com >Data: 30/04/2010 19.11 >A: >Ogg: Re: how to generate relatively prime numbers > >On Fri, Apr 30, 2010 at 06:32:30PM +0200, Michael T?xen wrote: > >> On Apr 30, 2010, at 9:29 AM, denot...@libero.it wrote: >> >> > Hi al

Re: how to generate relatively prime numbers

2010-04-30 Thread Victor Duchovni
On Fri, Apr 30, 2010 at 06:32:30PM +0200, Michael T?xen wrote: > On Apr 30, 2010, at 9:29 AM, denot...@libero.it wrote: > > > Hi all. > > I need to generate a BIGNUM C that is relatively prime with a BIGNUM N( > > GCD > > (N,C)=1 ) > > is there a pre-built function in openssl library ?? > >

Re: how to generate relatively prime numbers

2010-04-30 Thread Michael Tüxen
On Apr 30, 2010, at 9:29 AM, denot...@libero.it wrote: > Hi all. > I need to generate a BIGNUM C that is relatively prime with a BIGNUM N( > GCD > (N,C)=1 ) > is there a pre-built function in openssl library ?? Doesn't C=1 or C=N+1 solve your problem? Best regards Michael > > Thanks. >

RE: how to generate relatively prime numbers

2010-04-30 Thread PMHager
denot...@libero.it wrote on Friday, April 30, 2010 9:30: > > I need to generate a BIGNUM C that is relatively prime > with a BIGNUM N( GCD(N,C)=1 ) > is there a pre-built function in openssl library ?? You can do it in a simple loop like do{ BN_generate_prime_ex(C,bits,0,NULL,NULL,NULL))

how to generate relatively prime numbers

2010-04-30 Thread denot...@libero.it
Hi all. I need to generate a BIGNUM C that is relatively prime with a BIGNUM N( GCD (N,C)=1 ) is there a pre-built function in openssl library ?? Thanks. __ OpenSSL Project http://www.openssl.or