[openssl-users] SSE Version Of BIGNUM

2015-05-12 Thread Tom Marchand
Does anybody know of a version of BIGNUM that is SSE enabled allowing simultaneous operations on multiple BIGNUMs? ___ openssl-users mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users

Re: Issue facing while using function "const EVP_MD *EVP_get_digestbyname(const char *name)"

2013-08-09 Thread Tom marchand
Do you have to call OpenSSL_add_all_digests() first? On Aug 9, 2013, at 7:17 PM, Sanjay Kumar (sanjaku5) wrote: Hello All, I have a test program to use the function EVP_get_digestbyname as below I am not able figure out why function “EVP_get_digestbyname” return NULL ? After running

Re: BN_new/BN_init/BN_free

2013-05-02 Thread Tom marchand
Good eye but that's not it. The code below should read BN_free(Res). Thanks. On May 2, 2013, at 10:42 PM, Jeremy Farrell wrote: From: Tom marchand [mailto:tpmarch...@gmail.com] Sent: Friday, May 03, 2013 2:55 AM I am using the following code to create a temporary BIGNUM to hol

BN_new/BN_init/BN_free

2013-05-02 Thread Tom marchand
Hi, I am using the following code to create a temporary BIGNUM to hold the result of multiplication: BIGNUM *Res; while(!Done) { Res=BN_new(); BN_init(Res); BN_mul(Res,A,B,Ctx); BN_free(); } This code works with the exception that BN_free() is not releas