Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | More size_t | lloyd | 2010-10-13 | 1 | -5/+5 |
| | |||||
* | Doxygen | lloyd | 2010-06-22 | 1 | -6/+35 |
| | |||||
* | Use an input insensitive implementation of same_mem instead of memcmp. | lloyd | 2009-06-22 | 1 | -1/+8 |
| | | | | | | I don't know that having same_mem be sensitive to input would actually allow any form of timing attack in the current codebase, but it seemed like a prudent thing to do in any case. | ||||
* | Thomas Moschny passed along a request from the Fedora packagers which came | lloyd | 2009-03-30 | 1 | -1/+3 |
| | | | | | | | | | | | | | | | up during the Fedora submission review, that each source file include some text about the license. One handy Perl script later and each file now has the line Distributed under the terms of the Botan license after the copyright notices. While I was in there modifying every file anyway, I also stripped out the remainder of the block comments (lots of astericks before and after the text); this is stylistic thing I picked up when I was first learning C++ but in retrospect it is not a good style as the structure makes it harder to modify comments (with the result that comments become fewer, shorter and are less likely to be updated, which are not good things). | ||||
* | A new warning in glibc triggers if memset is called with a constant size | lloyd | 2009-01-31 | 1 | -8/+8 |
| | | | | | | | | | | of 0 (on the theory this is a mistake and the second and third arguments were swapped). However the GCC inliner apparently is good enough that it is triggering on code that just happens to create a zero length SecureVector or equivalent - the constants get propagated so __builtin_constant_p returns true. Add an if(n) in clear_mem so we skip calling memset if the size is zero. | ||||
* | More headers (loadstore, mem_ops, rotate, types) for util module | lloyd | 2008-09-28 | 1 | -0/+31 |