[openssl-dev] [openssl.org #2459] ecdsa_method declaration prevents use in implementing a dynamic engine

2016-05-16 Thread Matt Caswell via RT
This has been fixed in 1.1.0. Matt -- Ticket here: http://rt.openssl.org/Ticket/Display.html?id=2459 Please log in as guest with password guest if prompted -- openssl-dev mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev

[openssl.org #2459] ecdsa_method declaration prevents use in implementing a dynamic engine

2013-09-19 Thread Alon Bar-Lev via RT
Hi, Any ETA for this? Just wanted to note that finish is also required to allow cleaning up resources. Any ETA on this? very important if we want to use ec based hardware cryptography. Thanks, Alon Bar-Lev __ OpenSSL Project

[openssl.org #2459] ecdsa_method declaration prevents use in implementing a dynamic engine

2013-09-18 Thread Alon Bar-Lev via RT
Hi, Just wanted to note that finish is also required to allow cleaning up resources. Any ETA on this? very important if we want to use ec based hardware cryptography. Thanks, Alon Bar-Lev __ OpenSSL Project

Re: [openssl.org #2459] ecdsa_method declaration prevents use in implementing a dynamic engine

2013-09-18 Thread Douglas E. Engert
On 9/18/2013 8:48 AM, Alon Bar-Lev via RT wrote: Hi, Just wanted to note that finish is also required to allow cleaning up resources. In the ecs_locl.h in the current ecdsa_method structure the init and finish are #if 0 out. So far this it has not been needed. The mods I sent in were

Re: [openssl.org #2459] ecdsa_method declaration prevents use in implementing a dynamic engine

2013-09-18 Thread Douglas E. Engert via RT
On 9/18/2013 8:48 AM, Alon Bar-Lev via RT wrote: Hi, Just wanted to note that finish is also required to allow cleaning up resources. In the ecs_locl.h in the current ecdsa_method structure the init and finish are #if 0 out. So far this it has not been needed. The mods I sent in were

Re: [openssl.org #2459] ecdsa_method declaration prevents use in implementing a dynamic engine

2013-09-16 Thread Douglas E. Engert
On 9/12/2013 10:46 AM, Dr. Stephen Henson wrote: On Thu, Sep 12, 2013, Douglas E. Engert wrote: On 9/11/2013 2:01 PM, Stephen Henson via RT wrote: [snip] Yes similar to that but with a few minor changes. The analogous functions for EVP_PKEY_METHOD are called set and not put. For

Re: [openssl.org #2459] ecdsa_method declaration prevents use in implementing a dynamic engine

2013-09-12 Thread Dr. Stephen Henson
On Thu, Sep 12, 2013, Douglas E. Engert wrote: On 9/11/2013 2:01 PM, Stephen Henson via RT wrote: On Wed Sep 11 17:52:03 2013, deeng...@anl.gov wrote: Attached is a patch to move the definition of ecdsa_method from src/crypto/ecdsa/ecs_locl.h to ecdsa.h and move the definition if

Re: [openssl.org #2459] ecdsa_method declaration prevents use in implementing a dynamic engine

2013-09-12 Thread Douglas E. Engert
On 9/11/2013 2:01 PM, Stephen Henson via RT wrote: On Wed Sep 11 17:52:03 2013, deeng...@anl.gov wrote: Attached is a patch to move the definition of ecdsa_method from src/crypto/ecdsa/ecs_locl.h to ecdsa.h and move the definition if ecdh_method from src/crypto/ecdh/ech_locl.h to ecdh.h

Re: [openssl.org #2459] ecdsa_method declaration prevents use in implementing a dynamic engine

2013-09-12 Thread Douglas E. Engert via RT
On 9/11/2013 2:01 PM, Stephen Henson via RT wrote: On Wed Sep 11 17:52:03 2013, deeng...@anl.gov wrote: Attached is a patch to move the definition of ecdsa_method from src/crypto/ecdsa/ecs_locl.h to ecdsa.h and move the definition if ecdh_method from src/crypto/ecdh/ech_locl.h to ecdh.h

Re: [openssl.org #2459] ecdsa_method declaration prevents use in implementing a dynamic engine

2013-09-11 Thread Douglas E. Engert via RT
On 9/11/2013 2:01 PM, Stephen Henson via RT wrote: On Wed Sep 11 17:52:03 2013, deeng...@anl.gov wrote: Attached is a patch to move the definition of ecdsa_method from src/crypto/ecdsa/ecs_locl.h to ecdsa.h and move the definition if ecdh_method from src/crypto/ecdh/ech_locl.h to ecdh.h

[openssl.org #2459] ecdsa_method declaration prevents use in implementing a dynamic engine

2013-09-11 Thread Douglas E. Engert via RT
Attached is a patch to move the definition of ecdsa_method from src/crypto/ecdsa/ecs_locl.h to ecdsa.h and move the definition if ecdh_method from src/crypto/ecdh/ech_locl.h to ecdh.h These mods expose the EC method definitions similar to how the RSA method (rsa_meth_st) is defined in rsa.h.

Re: [openssl.org #2459] ecdsa_method declaration prevents use in implementing a dynamic engine

2013-09-11 Thread Douglas E. Engert
On 9/11/2013 2:01 PM, Stephen Henson via RT wrote: On Wed Sep 11 17:52:03 2013, deeng...@anl.gov wrote: Attached is a patch to move the definition of ecdsa_method from src/crypto/ecdsa/ecs_locl.h to ecdsa.h and move the definition if ecdh_method from src/crypto/ecdh/ech_locl.h to ecdh.h

[openssl.org #2459] ecdsa_method declaration prevents use in implementing a dynamic engine

2013-09-11 Thread Stephen Henson via RT
On Wed Sep 11 17:52:03 2013, deeng...@anl.gov wrote: Attached is a patch to move the definition of ecdsa_method from src/crypto/ecdsa/ecs_locl.h to ecdsa.h and move the definition if ecdh_method from src/crypto/ecdh/ech_locl.h to ecdh.h It's been policy that we should avoiding direct

[openssl.org #2459] ecdsa_method declaration prevents use in implementing a dynamic engine

2011-02-23 Thread Kent Yoder via RT
Hi, It appears that the way ECDSA_METHOD was defined prevents it from being used unless the internal header ecs_locl.h is included. This prevents it from being used for example to implement a stand-alone dynamic engine for ECDSA, since the internal header is not available. If possible i

Re: [openssl.org #2459] ecdsa_method declaration prevents use in implementing a dynamic engine

2011-02-23 Thread Douglas E. Engert
On 2/23/2011 12:31 PM, Kent Yoder via RT wrote: Hi, It appears that the way ECDSA_METHOD was defined prevents it from being used unless the internal header ecs_locl.h is included. This prevents it from being used for example to implement a stand-alone dynamic engine for ECDSA, since the