| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Remove printf in catch block | lloyd | 2008-07-07 | 1 | -1/+0 |
* | Extend random_prime() to be able to generate primes of any bit size. | lloyd | 2008-07-05 | 1 | -1/+10 |
* | Remove the free-standing function deref_alias. It only served as a forwarder | lloyd | 2008-06-30 | 7 | -33/+32 |
* | Remove the default_pbe option. Instead hardcode the default into | lloyd | 2008-06-30 | 2 | -5/+2 |
* | Remove option v1_assume_ca, no longer used | lloyd | 2008-06-30 | 1 | -2/+0 |
* | Previously X509_Store took two configuration values from the library | lloyd | 2008-06-30 | 2 | -9/+3 |
* | Remove the Config class. | lloyd | 2008-06-30 | 11 | -166/+104 |
* | Remove global_config() - replace by direct calls to global_state() | lloyd | 2008-06-30 | 12 | -41/+47 |
* | Make use of RandomNumberGenerator implementing add_entropy_source in | lloyd | 2008-06-28 | 1 | -14/+16 |
* | Add interfaces for add_entropy_source and add_entropy to | lloyd | 2008-06-28 | 2 | -8/+16 |
* | Reseed the underlying PRNG when ANSI_X931_PRNG:reseed is called | lloyd | 2008-06-28 | 1 | -0/+2 |
* | The two remaining locks were not being deleted, leaking memory | lloyd | 2008-06-28 | 1 | -0/+2 |
* | Change make_rng to be a static member of RandomNumberGenerator | lloyd | 2008-06-28 | 1 | -1/+1 |
* | New structure for entropy sources + RNGs. The entropy sources are owned by | lloyd | 2008-06-27 | 4 | -164/+169 |
* | Avoid warning | lloyd | 2008-06-27 | 1 | -1/+1 |
* | Remove the global PRNG object as well as the global list of entropy sources. | lloyd | 2008-06-27 | 2 | -117/+1 |
* | Remove PRNG_Unseeded throw() specifies from the RNG randomize() functions. | lloyd | 2008-06-27 | 2 | -2/+2 |
* | OctetString now requires a RandomNumberGenerator& to create a random | lloyd | 2008-06-27 | 1 | -3/+4 |
* | Reorganize the EMSA classes, and remove the last references to prng_reference | lloyd | 2008-06-27 | 5 | -58/+126 |
* | Previously if DL_Group was given a q value of zero, it would check to | lloyd | 2008-06-27 | 1 | -4/+0 |
* | Remove unneeded include of libstate.h | lloyd | 2008-06-27 | 1 | -1/+0 |
* | Remove load checking, as it requires an RNG (at least at the moment). | lloyd | 2008-06-27 | 10 | -58/+47 |
* | Split IF_Core constructor into two, one for public keys and one for private. | lloyd | 2008-06-27 | 2 | -5/+12 |
* | Remove SHA1PRNG for the moment, until | lloyd | 2008-06-23 | 1 | -167/+0 |
* | Remove the hooks for the AEP module, since it was removed due to lack of | lloyd | 2008-06-22 | 1 | -16/+0 |
* | Similiar combining transform for the ElGamal, DSA, and NR private key | lloyd | 2008-06-20 | 3 | -53/+34 |
* | Consolidate the two DH_PrivateKey constructors into a single one taking | lloyd | 2008-06-20 | 1 | -20/+13 |
* | Use RNG& argument for PKCS8::encrypt_key and PKCS8::PEM_encode | lloyd | 2008-06-20 | 1 | -6/+8 |
* | Convert pkcs8_decoder() and x509_decoder() to take a RandomNumberGenerator& | lloyd | 2008-06-20 | 5 | -24/+35 |
* | Pass RNG& to IF (RSA/RW) load hooks | lloyd | 2008-06-20 | 3 | -24/+28 |
* | Pass a reference to the global PRNG as an argument to the DL_Scheme_Decoder | lloyd | 2008-06-20 | 1 | -6/+12 |
* | Pass a RandomNumberGenerator& to the PK_Core constructors and the various | lloyd | 2008-06-20 | 6 | -44/+48 |
* | Move RNG code from base.cpp to new rng.cpp | lloyd | 2008-06-18 | 2 | -49/+57 |
* | The FTW_EntropySource constructor no longer takes a default argument: | lloyd | 2008-06-17 | 1 | -1/+1 |
* | Delete the public key filter classes. Advertised on the devel list previously: | lloyd | 2008-06-16 | 1 | -115/+0 |
* | Some functions in engine.cpp required BOTAN_DLL macros to compile correctly. | lloyd | 2008-06-11 | 1 | -14/+14 |
* | Add includes to ensure decls for global functions are visible at call points | lloyd | 2008-06-11 | 3 | -0/+4 |
* | X509_CA::{new_crl,update_crl} take a RandomNumberGenerator reference | lloyd | 2008-06-11 | 1 | -7/+7 |
* | X509::create_cert_req and X509::create_self_signed_cert take an RNG ref | lloyd | 2008-06-11 | 1 | -7/+6 |
* | Modify X509_CA::make_cert and X509_CA::sign_request to take a RNG reference | lloyd | 2008-06-11 | 2 | -4/+6 |
* | Move the declaration of the RandomNumberGenerator base class from base.h | lloyd | 2008-06-10 | 1 | -0/+1 |
* | Change PK_Signer::signature to take a RandomNumberGenerator reference | lloyd | 2008-06-10 | 6 | -16/+25 |
* | PK_Encryptor::encrypt now takes a RandomNumberGenerator reference, instead | lloyd | 2008-06-10 | 4 | -11/+16 |
* | Pass a RNG reference to the EMSA encoder functions | lloyd | 2008-06-10 | 7 | -34/+60 |
* | Pass RandomNumberGenerator references to public key operations that need | lloyd | 2008-06-10 | 6 | -17/+22 |
* | Add braces to avoid confusion (and a GCC 4.3 warning) in nested if/else | lloyd | 2008-06-10 | 1 | -0/+2 |
* | Remove Randpool header from X9.31 PRNG code: the RNGs are now decoupled | lloyd | 2008-06-10 | 1 | -1/+0 |
* | Check in the first import from InSiTo, SHA1PRNG, which implements the | lloyd | 2008-06-07 | 1 | -0/+167 |
* | We must have ANSI_X931_RNG::clear() call destroy() on V, which sets the | lloyd | 2008-06-07 | 1 | -1/+1 |
* | Change how the ANSI X9.31 generator tells that it is seeded. Previously, | lloyd | 2008-06-07 | 1 | -15/+11 |