| Commit message (Expand) | Author | Age | Files | Lines |
* | A new warning in glibc triggers if memset is called with a constant size | lloyd | 2009-01-31 | 1 | -8/+8 |
* | merge of '17ebb8fd6cdfe0a743092b2bf5b039a351cc23be' | lloyd | 2009-01-21 | 4 | -6/+19 |
|\ |
|
| * | Use printf instead of echo -n in botan-config, as according to bug reports | lloyd | 2009-01-19 | 1 | -1/+1 |
| * | In the Unix entropy source fast poll, clear the stat buf before | lloyd | 2009-01-03 | 1 | -0/+1 |
| * | Fix a memory leak in PKCS #8 load_key and encrypt_key that would | lloyd | 2008-12-12 | 1 | -5/+9 |
| * | Add a ref to a paper describing a chosen ciphertext attack on OAEP | lloyd | 2008-12-08 | 1 | -0/+8 |
| * | DL_Group constructor taking three BigInts had the order of q and g swapped | lloyd | 2008-12-08 | 1 | -1/+1 |
* | | Argh. Using printf in botan-config didn't work either, because some | lloyd | 2009-01-21 | 1 | -3/+3 |
|/ |
|
* | Rickard Bondesson reported on botan-devel about some problems building | lloyd | 2008-12-02 | 4 | -19/+7 |
* | Fix name of function in exception throw | lloyd | 2008-11-30 | 1 | -1/+1 |
* | In EMSA3_Raw::raw_data, clear message buffer (reset) before returning | lloyd | 2008-11-28 | 1 | -1/+3 |
* | Allow asking for EMSA3(Raw) in get_emsa (returning a new EMSA3_Raw object) | lloyd | 2008-11-28 | 1 | -0/+4 |
* | Add a variant of EMSA3 called EMSA3_Raw which does not hash the data or | lloyd | 2008-11-28 | 2 | -46/+123 |
* | Add SHA-224 hash ids for EMSA2/X9.31 and EMSA3/PKCS #1 v1.5 public key | lloyd | 2008-11-28 | 1 | -3/+14 |
* | Rickard Bondesson reported on the mailing list that he had noticed | lloyd | 2008-11-28 | 1 | -11/+13 |
* | Add Doxygen comment for Timer::clock. Fix @return in benchmark.h and x509_ca.h | lloyd | 2008-11-25 | 3 | -2/+6 |
* | If the read succeceed in EGD_EntropySource::slow_poll, the loop would | lloyd | 2008-11-25 | 1 | -0/+2 |
* | Disable using OpenSSL's AES - it is causing crashes for an unknown reason. | lloyd | 2008-11-24 | 1 | -0/+6 |
* | Fix a roundoff error in the block cipher benchmarks | lloyd | 2008-11-24 | 1 | -16/+17 |
* | In Pooling_Allocator::get_more_core, limit in_bytes to at most 1 MiB to | lloyd | 2008-11-24 | 2 | -3/+4 |
* | In pkg-config, don't link against a specific version number (eg -lbotan-1.8.0) | lloyd | 2008-11-24 | 1 | -1/+1 |
* | Make X509_Store::CRL_Info public for IBM XLC 0.9 for Cell | lloyd | 2008-11-24 | 1 | -10/+14 |
* | Wrap code and struct definitions internal to sha1_sse2_imp.cpp in an | lloyd | 2008-11-24 | 1 | -0/+4 |
* | In es_ftw, remove check for if the return value of read() is larger | lloyd | 2008-11-24 | 1 | -1/+1 |
* | Modify es_ftw to use xor_into_buf | lloyd | 2008-11-23 | 1 | -4/+4 |
* | Reduce size of I/O buffer in HMAC_RNG from 128 to 96 bytes. Unlikely that any | lloyd | 2008-11-23 | 1 | -1/+1 |
* | Previously es_unix would always try to get 16K, then return. Now it | lloyd | 2008-11-23 | 1 | -4/+3 |
* | Add an Algorithm_Factory& argument to Engine::get_cipher to avoid a | lloyd | 2008-11-23 | 4 | -8/+13 |
* | Remove openssl/gnump engine dep on libstate, no longer a dep | lloyd | 2008-11-23 | 2 | -8/+0 |
* | Limit the output size of fast polls by the BeOS, Unix, and Win32 entropy | lloyd | 2008-11-23 | 3 | -0/+3 |
* | Use a simple run length encoding in xor_into_buf, so long blocks of spaces, | lloyd | 2008-11-23 | 2 | -3/+22 |
* | Compile fix | lloyd | 2008-11-23 | 1 | -2/+2 |
* | Remove now unused buf_es module | lloyd | 2008-11-23 | 3 | -134/+0 |
* | Update BeOS entropy poller to also derive directly from EntropySource | lloyd | 2008-11-23 | 3 | -35/+46 |
* | Fix return types in declaration | lloyd | 2008-11-23 | 1 | -2/+3 |
* | Convert Win32 stats polling entropy source to use xor_into_buf. Untested. | lloyd | 2008-11-23 | 3 | -44/+59 |
* | Fix indexing of ids array. Don't zeroize stat/rusage bufs before use | lloyd | 2008-11-23 | 1 | -8/+4 |
* | Use template version of xor_into_buf wherever useful in es_unix.cpp | lloyd | 2008-11-23 | 1 | -3/+3 |
* | Pass by const reference so larger structs can be used with xor_into_buf template | lloyd | 2008-11-23 | 1 | -1/+1 |
* | Use template version of xor_into_buf in es_unix | lloyd | 2008-11-23 | 1 | -1/+1 |
* | Move xor_into_buf to xor_buf.cpp. Also add a new template wrapper for | lloyd | 2008-11-23 | 3 | -10/+39 |
* | Change unix_procs entropy source to be a plain EntropySource instead of | lloyd | 2008-11-23 | 3 | -24/+47 |
* | In Randpool and HMAC_RNG, zeroize the I/O buffer used for holding polled | lloyd | 2008-11-23 | 2 | -0/+5 |
* | Add xor_into_buf. Add Doxygen comments for xor_buf | lloyd | 2008-11-23 | 1 | -10/+32 |
* | Revert change that added multiblock support to SSE2 SHA-1. Was causing | lloyd | 2008-11-23 | 3 | -206/+183 |
* | Dean Gaudet's original version of the SHA-1 SSE2 code supported multiple | lloyd | 2008-11-23 | 3 | -183/+206 |
* | Do a minor optimization in some of the compression functions, loading | lloyd | 2008-11-23 | 7 | -121/+145 |
* | Update SHA1_IA32 to use compress_n | lloyd | 2008-11-23 | 1 | -2/+6 |
* | I had not anticipated this being really worthwhile, but it turns out | lloyd | 2008-11-23 | 33 | -746/+876 |
* | Fix integer overflow in benchmars | lloyd | 2008-11-23 | 1 | -4/+4 |