aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* Avoid warninglloyd2008-06-271-1/+1
* Remove the global PRNG object as well as the global list of entropy sources.lloyd2008-06-272-117/+1
* Remove PRNG_Unseeded throw() specifies from the RNG randomize() functions.lloyd2008-06-272-2/+2
* OctetString now requires a RandomNumberGenerator& to create a randomlloyd2008-06-271-3/+4
* Reorganize the EMSA classes, and remove the last references to prng_referencelloyd2008-06-275-58/+126
* Previously if DL_Group was given a q value of zero, it would check tolloyd2008-06-271-4/+0
* Remove unneeded include of libstate.hlloyd2008-06-271-1/+0
* Remove load checking, as it requires an RNG (at least at the moment).lloyd2008-06-2710-58/+47
* Split IF_Core constructor into two, one for public keys and one for private.lloyd2008-06-272-5/+12
* Remove SHA1PRNG for the moment, untillloyd2008-06-231-167/+0
* Remove the hooks for the AEP module, since it was removed due to lack oflloyd2008-06-221-16/+0
* Similiar combining transform for the ElGamal, DSA, and NR private keylloyd2008-06-203-53/+34
* Consolidate the two DH_PrivateKey constructors into a single one takinglloyd2008-06-201-20/+13
* Use RNG& argument for PKCS8::encrypt_key and PKCS8::PEM_encodelloyd2008-06-201-6/+8
* Convert pkcs8_decoder() and x509_decoder() to take a RandomNumberGenerator&lloyd2008-06-205-24/+35
* Pass RNG& to IF (RSA/RW) load hookslloyd2008-06-203-24/+28
* Pass a reference to the global PRNG as an argument to the DL_Scheme_Decoderlloyd2008-06-201-6/+12
* Pass a RandomNumberGenerator& to the PK_Core constructors and the variouslloyd2008-06-206-44/+48
* Move RNG code from base.cpp to new rng.cpplloyd2008-06-182-49/+57
* The FTW_EntropySource constructor no longer takes a default argument:lloyd2008-06-171-1/+1
* Delete the public key filter classes. Advertised on the devel list previously:lloyd2008-06-161-115/+0
* Some functions in engine.cpp required BOTAN_DLL macros to compile correctly.lloyd2008-06-111-14/+14
* Add includes to ensure decls for global functions are visible at call pointslloyd2008-06-113-0/+4
* X509_CA::{new_crl,update_crl} take a RandomNumberGenerator referencelloyd2008-06-111-7/+7
* X509::create_cert_req and X509::create_self_signed_cert take an RNG reflloyd2008-06-111-7/+6
* Modify X509_CA::make_cert and X509_CA::sign_request to take a RNG referencelloyd2008-06-112-4/+6
* Move the declaration of the RandomNumberGenerator base class from base.hlloyd2008-06-101-0/+1
* Change PK_Signer::signature to take a RandomNumberGenerator referencelloyd2008-06-106-16/+25
* PK_Encryptor::encrypt now takes a RandomNumberGenerator reference, insteadlloyd2008-06-104-11/+16
* Pass a RNG reference to the EMSA encoder functionslloyd2008-06-107-34/+60
* Pass RandomNumberGenerator references to public key operations that needlloyd2008-06-106-17/+22
* Add braces to avoid confusion (and a GCC 4.3 warning) in nested if/elselloyd2008-06-101-0/+2
* Remove Randpool header from X9.31 PRNG code: the RNGs are now decoupledlloyd2008-06-101-1/+0
* Check in the first import from InSiTo, SHA1PRNG, which implements thelloyd2008-06-071-0/+167
* We must have ANSI_X931_RNG::clear() call destroy() on V, which sets thelloyd2008-06-071-1/+1
* Change how the ANSI X9.31 generator tells that it is seeded. Previously,lloyd2008-06-071-15/+11
* Wrap at 80 columnslloyd2008-05-251-1/+2
* Update EME_PKCS1v15::pad to use next_byte APIlloyd2008-05-251-1/+1
* Add RandomNumberGenerator::next_byte, which just returns a single bytelloyd2008-05-251-0/+10
* Make the two parameters of Randpool (which underlying block cipher and MAClloyd2008-05-252-8/+8
* Use RNG argument in EME_PKCS1v15::pad instead of global objectlloyd2008-05-251-3/+2
* Pass an RNG reference to EME::padlloyd2008-05-244-11/+18
* Don't use the global PRNG in implementations of PBE::new_paramslloyd2008-05-243-8/+9
* Remove random_integer() and replace it with a BigInt constructor taking alloyd2008-05-249-28/+27
* Pass an RNG reference to IF_Corelloyd2008-05-242-5/+6
* Keypair::check_key no longer references global PRNGlloyd2008-05-246-16/+28
* Remove version of OctetString::change that used global PRNGlloyd2008-05-241-1/+1
* Avoid global RNG in S2K::new_random_salt (RNG reference passed as argument in...lloyd2008-05-241-3/+3
* Pass a RNG reference to load_check and gen_check functionslloyd2008-05-246-25/+23
* Avoid using the global RNG in check_key, instead pass a reference.lloyd2008-05-2411-26/+27