Re: [openssl-users] Engine NID_sha512

2018-11-19 Thread Christian Johansson
Wow - nothing like starting the day with a facepalm :-/ Huge thanks Dave!! Från: openssl-users på uppdrag av Dave Coombs Skickat: måndag, november 19, 2018 3:09 em Till: openssl-users@openssl.org Ämne: Re: [openssl-users] Engine NID_sha512 Hi, > if (!dig

Re: [openssl-users] Engine NID_sha512

2018-11-19 Thread Dave Coombs
Hi, > if (!digest) > { > static int > supported_nids[] = {NID_sha256, NID_sha384, NID_sha512, 0}; > *nids = > supported_ni

[openssl-users] Engine NID_sha512

2018-11-19 Thread Christian Johansson
Hello I’m trying to write an engine that implements message digest functions – specifically: sha256, sha384 and sha512. The first two work as expected, I can intercept calls to update() and final() but for sha512 it doesn’t work. From the below program output you can see that my digest_meths me