summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/dsa (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* Prepare to provide DSA_get0_{p,q,g,{priv,pub}_key}()tb2022-01-052-2/+39
* Include evp_locl.h where it will be needed once most structs fromtb2021-12-121-1/+2
* Add #include "bn_lcl.h" to the files that will soon need it.tb2021-12-042-2/+5
* Crank the number of rounds of Miller-Rabin from 50 to 64tb2021-11-291-4/+7
* Add DSA CMS support.jsing2019-11-011-1/+25
* Provide EVP_PKEY_CTX_get_signature_md() macro and implement thejsing2019-09-091-1/+5
* Readability tweaks for comments that explain the blinding.tb2019-06-041-5/+5
* Remove the blinding later to avoid leaking information on the lengthtb2019-06-041-3/+3
* Fix BN_is_prime_* calls in libcrypto, the API returns -1 on error.tb2019-01-201-3/+3
* Initialize priv_key and pub_key on first use instead of at the top.tb2018-11-091-4/+4
* unrevert the use of bn_rand_interval().tb2018-11-062-17/+8
* revert use of bn_rand_interval due to failures with ECDHE and TLStb2018-11-062-8/+17
* Make use of bn_rand_interval() where appropriate.tb2018-11-052-17/+8
* Eliminate a few "} else" branches, a few unneeded NULL checks beforetb2018-11-051-11/+9
* Remove two unnecessary BN_FLG_CONSTTIME dances: BN_mod_exp_ct() alreadytb2018-11-051-9/+3
* Add consts to EVP_PKEY_asn1_set_private()tb2018-08-241-2/+2
* After removing support for broken PKCS#8 formats (it was high time),tb2018-08-241-2/+2
* Use a blinding value when generating a DSA signature, in order to reducejsing2018-06-141-9/+39
* Clarify the digest truncation comment in DSA signature generation.jsing2018-06-141-3/+4
* Pull up the code that converts the digest to a BIGNUM - this only needsjsing2018-06-141-10/+10
* Fix a potential leak/incorrect return value in DSA signature generation.jsing2018-06-141-4/+6
* Call DSA_SIG_new() instead of hand rolling the same.jsing2018-06-141-5/+2
* DSA_SIG_new() amounts to a single calloc() call.jsing2018-06-141-10/+3
* style(9), comments and whitespace.jsing2018-06-131-30/+32
* Avoid a timing side-channel leak when generating DSA and ECDSA signatures.jsing2018-06-131-5/+2
* Convert a handful of X509_*() functions to take const as in OpenSSL.tb2018-05-011-5/+5
* Fix a small timing side channel in dsa_sign_setup(). Simple adaptationtb2018-04-281-12/+25
* make ENGINE_finish() succeed on NULL and simplify callers as intb2018-04-141-10/+6
* Add DSA_meth_{dup,free,new,set_{finish,sign}}()tb2018-03-172-1/+86
* Provide DSA_get0_engine()tb2018-02-202-2/+9
* Provide DSA_SIG_{g,s}et0()tb2018-02-202-2/+27
* Provide DSA_{clear,set,test}_flags()tb2018-02-202-2/+23
* Provide {DH,DSA}_set0_key(). Requested by sthen.tb2018-02-182-2/+21
* Provide DSA_set0_pqg.tb2018-02-182-2/+26
* s/DH/DSA/jsing2018-02-171-2/+2
* Provide further parts of the OpenSSL 1.1 API: {DH,DSA}_get0_{key,pqg}(),tb2018-02-172-2/+26
* use freezero() instead of memset/explicit_bzero + free. Substantiallyderaadt2017-05-021-5/+2
* Send the function codes from the error functions to the bit bucket,beck2017-01-297-76/+50
* Add ct and nonct versions of BN_mod_inverse for internal usebeck2017-01-211-3/+3
* Split out BN_div and BN_mod into ct and nonct versions for Internal use.beck2017-01-213-9/+9
* Make explicit _ct and _nonct versions of bn_mod_exp funcitons thatbeck2017-01-214-9/+13
* Expand ASN1_ITEM_rptr macro - no change in generated assembly.jsing2016-12-301-2/+2
* Explicitly export a list of symbols from libcrypto.jsing2016-12-211-1/+5
* Kill a bunch of OLD_ASN1 usage by replacing ASN1_{d2i,i2d}_* withjsing2016-11-042-9/+30
* unifdef OPENSSL_NO_CMSjsing2016-10-191-24/+1
* Remove flags for disabling constant-time operations.bcook2016-06-302-14/+5
* Disable DSA_FLAG_NO_EXP_CONSTTIME, always enable constant-time behavior.bcook2016-06-213-88/+46
* Set BN_FLG_CONSTTIME on the correct variable. beck committed wrong fix.libressl-v2.4.1tedu2016-06-061-2/+2
* Correct a problem that prevents the DSA signing algorithm from runningbeck2016-06-061-4/+6
* Remove support for ancient, broken DSA implementations.doug2016-03-011-60/+20