pkcs11 engine

2008-02-15 Thread David Hostetter
I am using the latest 9.8g openssl on Solaris 10 update 3. The ssl handshake is working fine. I want to use the Niagra 2 chip to do my encryping but I need the pkcs11 engine. The 9.8g ENGINE_load_builtin_engines() does not have pkcs11. How do I get it and if there is a way then how do I

PKCS11 engine

2003-07-04 Thread Pierre De Boeck
Hi all, I just downloaded the 0.9.7b version of OpenSsl and I expected to see PKCS11 support in the form of an ENGINE instance. But apparently that particular engine is not yet bundled with the rest and so I downloaded the "hw_pkcs11-0.9.7b" patch ( in the contribution link) which should

Re: PKCS11 engine

2003-07-04 Thread Afchine Madjlessi
From: "Pierre De Boeck" <[EMAIL PROTECTED]> > Hi all, > > I just downloaded the 0.9.7b version of OpenSsl and I expected > to see PKCS11 support in the form of an ENGINE instance. > > But apparently that particular engine is not yet bundled with > the rest and so I downloaded the "hw_pkcs11-0.9.7

RE: PKCS11 engine

2003-07-04 Thread Pierre De Boeck
PM > To: [EMAIL PROTECTED] > Subject: Re: PKCS11 engine > > > From: "Pierre De Boeck" <[EMAIL PROTECTED]> > > Hi all, > > > > I just downloaded the 0.9.7b version of OpenSsl and I > expected to see > > PKCS11 support in the form of an ENGINE

PKCS11 engine signing

2003-08-02 Thread Stefan Hadjistoytchev
Hi! I've just downloaded "openssl 0.9.7b" and successfully patched it with "hw_pkcs11-0.9.7b.patch.gz" and compule it under Windows XP using "Visual C++ 6.0". I want to use this "pkcs11 engine" to access SmartCards using its pkcs11 library. The

Re: PKCS11 engine

2003-09-10 Thread Izaskun Mendia Telleria
Hello, Ihavethesameproblem, i'm trying to associated hw_pkcs11-0.9.7b.patch with openssl-0.9.7b but I can't. To make it work? The steps are: >>tar xvzf openssl-0.9.7b.tar.gz OK >>patch -p0 < hw_pkcs11-0.9.7b.patch FAULT C:\...\OPENSSL>patch -p0 < hw_pkcs11-0.9.7b.

trustway pkcs11 engine for openssl

2002-04-23 Thread afchine madjlessi
    Based on openssl-engine-0.9.6c, we have developed a new engine which allowsopenssl applications and Apache-mod_ssl servers to use through a PKCS#11interface the security functions provided by the Bull trustway cc2000 cryptographiccard, taking advantage of key storage in secure memory and

PKCS11 Engine for OCSP in OpenSSL

2006-11-13 Thread certiver semarket
0C3006:asn1 encoding routines:ASN1_item_sign:EVP lib:.\crypto\asn1\a_sign.c:276:error in ocspI've tried also with a SmartCard and OpenSC's native opensc-pkcs11.dll module, but the error is still the same. Question is, may this be an issue from OpenSSL or from the OpenSC implementation? Do you know/recommend

Fw: trustway pkcs11 engine for openssl

2002-04-25 Thread afchine madjlessi
Based on openssl-engine-0.9.6c, we have developed a new engine which allowsopenssl applications and Apache-mod_ssl servers to use through a PKCS#11interface the security functions provided by the Bull trustway cc2000 cryptographiccard, taking advantage of key storage in secure memory and acc

Re: trustway pkcs11 engine for openssl

2002-04-25 Thread Richard Levitte - VMS Whacker
Uhmmm, we got the message. Several times. Do you *really* think you'll get wuicker responses by repeating it every day? Some folks are meaner than me and simply filter people who repeat their emails too much... I've got the first copy marked in my inbox. I'm sure have that as well. Please be

Re: trustway pkcs11 engine for openssl

2002-04-30 Thread afchine madjlessi
Thursday, April 25, 2002 5:49 PM Subject: RE: trustway pkcs11 engine for openssl Afchine,   Hi, I am interested in this post.  Can you tell me a little about this card?  Will your comments about PKCS#11 work with PKCS#7 for example?  I helped set up a Linux system with

RSA decryption and pkcs11 engine load in the same line problem

2009-09-01 Thread nutters
ing support [success]: SO_PATH:engine_pkcs11 [success]:ID:pkcs11 [success]:LIST_ADD:1 [success]:LOAD [success]:MODULE_PATH:OCSCryptolib_P11.dll Loaded: pkcs11 engine [available] OpenSSL> rsautl -decrypt -in cipher.txt -out raw.txt -engine pkcs11 -keyform engine -i

RSA encryption and decryption performance difference between pkcs11 engine and default engine on windows and solaris

2007-02-13 Thread AD D
d decryption wasted 1500ms, then I ran the code on Solaris (sparc t2000), it wast 8000ms. I googled that why Solaris RSA enc and dec is so slow and found that the pkcs11 engine should be use to improve Solaris RSA performance. I did use the pkcs11 engine e = ENGINE_by_id("pkcs11"

Re: RSA encryption and decryption performance difference between pkcs11 engine and default engine on windows and solaris

2007-02-14 Thread durgaprasad jammula
PKCS11 is interface to hardware cryptographic accelators. If you use PKCS11 engine, instead of software doing the encryption/decryption, hardware does it. To use, PKCS11, you need to have cryptographic hardware accelator. This comes by default with Sun Fire T2000. If you encrypt the data with

Re: RSA encryption and decryption performance difference between pkcs11 engine and default engine on windows and solaris

2007-02-14 Thread AD D
, but the RSA enc and dec performance on the amd 64 dell machine running Solaris x64(100 times RSA enc and dec in 700ms) is also much higher than the same machine running windows 2003 x86 (100 times RSA enc and dec in 1200ms without pkcs11 engine. On 2/14/07, durgaprasad jammula <[EMAIL PROTEC