ecdsa_method missing?

2011-02-22 Thread Kent Yoder
Hi, The following RSA code compiles: #include main() { RSA_METHOD rsa = { "test" }; } but this ECDSA code doesn't: #include main() { ECDSA_METHOD ecdsa = { "test" }; } Am I missing a declaration, or is this perhaps a bug? Thanks, Kent

Re: ecdsa_method missing?

2011-02-23 Thread Kent Yoder
this, but if you really need this > structure then you'll have to copy its definition from the header I > mentioned above. > > Cheers, > -- > Mounir IDRASSI > IDRIX > http://www.idrix.fr > > On 2/22/2011 6:14 PM, Kent Yoder wrote: >> >> Hi, >> &g

Re: How to over-ride SSL_CTX_use_PrivateKey_file() behavior with custom engine

2012-12-05 Thread Kent Yoder
Hi Ashok, On Wed, Dec 5, 2012 at 12:29 AM, Ashok C wrote: > Hi, > > Our current SSL server loads plain-text private keys using the > SSL_CTX_use_PrivateKey_file() method. We are moving from this strategy to > use custom encrypted private keys using the TPM concept. For this, we have > an engine i

Config option for -keyform?

2007-07-24 Thread Kent Yoder
Hi, I'm looking for a config file option that will force openssl to use an engine's load key functions when accessing key files, like the "-keyform engine" option offered by the openssl command. Does such an option exist? Thanks, Kent -- Kent Yoder

0.9.8: simple engine call causes loop

2005-09-27 Thread Kent Yoder
Hi, Calling ENGINE_by_id("anything") before making any other calls to OpenSSL seems to cause infinite recursion in trying to load the dynamic engine. I believe adding a call to ENGINE_load_dynamic() before attempting to load the dynamic engine inside ENGINE_by_id() will fix the problem. Thanks,

Re: 0.9.8: simple engine call causes loop

2005-09-27 Thread Kent Yoder
Thanks, its fixed in the latest snapshot. Kent On 9/27/05, Nils Larsch <[EMAIL PROTECTED]> wrote: > Kent Yoder wrote: > > Hi, > > > > Calling ENGINE_by_id("anything") before making any other calls to > > OpenSSL seems to cause infinite recursion i

Re: 0.9.8: simple engine call causes loop

2005-09-28 Thread Kent Yoder
engine is used to load .so engines... Thanks for the help, Kent On 9/27/05, Kent Yoder <[EMAIL PROTECTED]> wrote: > Thanks, its fixed in the latest snapshot. > > Kent > > On 9/27/05, Nils Larsch <[EMAIL PROTECTED]> wrote: > > Kent Yoder wrote: > > > Hi, &

Re: TPM support !!!

2005-10-06 Thread Kent Yoder
iated. > > Many thanks, > Dinesh > > > __ > OpenSSL Project http://www.openssl.org > User Support Mailing Listopenssl-users@openssl.org > Automated List Manager

Re: Generating AES Keys using command line

2005-10-10 Thread Kent Yoder
openssl rand 16 > aes128.key On 10/10/05, Adam Jones <[EMAIL PROTECTED]> wrote: > > > Does anyone know how to generate AES 128, 192, 0r 256 keys using the openssl > command line. -- Kent Yoder IBM LTC Security Dev. _

openssl config file location

2005-06-02 Thread Kent Yoder
Hi, the page http://www.openssl.org/docs/crypto/OPENSSL_config.html claims that OPENSSL_CONFIG should be the environment variable to set for an alternate config file, however it appears that the code wants OPENSSL_CONF. Also, the OPENSSL_config.3 man page shows OPENSSL_CONFIG.. Others manpages

Using config to load a shared object engine

2005-06-03 Thread Kent Yoder
Hi, I've been playing with 0.9.8 and have gotten my engine to load as a .so from the engines directory, which is excellent. Now I'm trying to use the config feature to find and load this engine and I'm not having much luck. Here's my config file: openssl.cnf openssl_init = init_se

Re: Using config to load a shared object engine

2005-06-03 Thread Kent Yoder
BINGO... thanks Nils... Looks like dynamic_path and engine_id are somewhat interchangable; having either finds my .so. Kent On 6/3/05, Nils Larsch <[EMAIL PROTECTED]> wrote: > Kent Yoder wrote: > > Hi, > > > > I've been playing with 0.9.8 and have gotte

ppc64 build

2005-07-14 Thread Kent Yoder
Hi, on RHEL4 ppc64 I am getting the same message while building both 0.9.7g and 0.9.8: [EMAIL PROTECTED] openssl-0.9.7g]#./Configure linux-ppc64 shared ... Configured for linux-ppc64. [EMAIL PROTECTED] openssl-0.9.7g]# make making all in crypto... make[1]: Entering directory `/root/openssl-0.9.7

Re: ppc64 build

2005-07-14 Thread Kent Yoder
One thing that seems to work after running Configure is to swap "-bpowerpc64-linux" with "-m64" in the toplevel Makefile. Kent On 7/14/05, Kent Yoder <[EMAIL PROTECTED]> wrote: > Hi, on RHEL4 ppc64 I am getting the same message while building both > 0.9.7g a

ssl3 write pending - bad write retry

2003-09-03 Thread Kent Yoder
Hi, Under heavy load (> 95%) on s390 (SLES8, openssl-0.9.7b), I've been seeing these bad write retries. We're using 12 PCICA cards with IBMCA engine enabled and home-brew openssl client/server apps, and the errors only happen when doing hardware DES. I discovered the following bug for

Re: ssl3 write pending - bad write retry

2003-09-04 Thread Kent Yoder
Thanks for the tip, but unfortunately that didn't fix the problem. I'm still seeing the same behavior... Kent On Thursday 04 September 2003 05:11 am, Arne Ansper wrote: > On Wed, 3 Sep 2003, Kent Yoder wrote: > > Hi, > > > > Under heavy load

New IBMCA engine ... was Re: ssl3 write pending - bad write retry

2003-10-24 Thread Kent Yoder
Arne and Geoff, Sorry for the lng delay in this reply, but thanks for your help. This turned out to be barking up the wrong tree in the beginning, an error in the way our homebrewed server app was reporting SSL errors, and not load based at all... The real problem was tha