I wrote some simple bindings to generate an ecdsa key:
int nid = my_nist2nid(curve);
EVP_PKEY_CTX *ctx = EVP_PKEY_CTX_new_id(EVP_PKEY_EC, NULL);
bail(EVP_PKEY_keygen_init(ctx) > 0);
bail(EVP_PKEY_CTX_set_ec_paramgen_curve_nid(ctx, nid));
EVP_PKEY *pkey = NULL;
bail(EVP_PKEY_keygen(ctx,
It seems that we have the same problem.
I just opened a thread here
https://mta.openssl.org/pipermail/openssl-users/2016-May/003733.html
It seems that a group of experts found a workaround here.
https://github.com/elabftw/elabftw/issues/242
Maybe you're expert enough to understand how to use t
On Mon, May 23, 2016 at 01:15:45PM +, Salz, Rich wrote:
> ... in case you haven't noticed :) Our announced release date for 1.1 has
> come and gone.
>
> We want to close many more bugs before we release it. In the meantime,
> please test against master or a daily snapshot or the last beta
... in case you haven't noticed :) Our announced release date for 1.1 has come
and gone.
We want to close many more bugs before we release it. In the meantime, please
test against master or a daily snapshot or the last beta release.
Thanks for your patience!
--
Senior Architect, Akamai Te
Dear openssl users,
I'm struggling with the error below, I wrote to Openssl development in
February 2016 but they are busy with the next release, I see they are
aware of it in git/openssl and working on it.
https://github.com/openssl/openssl/pull/771
The bug is in the command ts -verify
|**