Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove memset_s, not implemented on any machine I can test on and | lloyd | 2015-01-23 | 1 | -0/+6 |
| | | | | | | | | problematic for requiring a special define before the first include of string.h. Instead optionally call memset via a volatile function pointer as a faster alternative to byte at a time writes. Github 42, 45 | ||||
* | Fixes for Windows paths. Based on Github pull 41 from cdesjardins | git | 2015-01-11 | 3 | -4/+4 |
| | | | | with some modifications by randombit. | ||||
* | Create a combined news page for the website | lloyd | 2015-01-10 | 1 | -0/+1 |
| | |||||
* | Move license text to a plain text file without ReST market | lloyd | 2015-01-10 | 1 | -3/+3 |
| | |||||
* | Use RtlSecureZeroMemory or memset_s if available | lloyd | 2015-01-07 | 2 | -0/+2 |
| | |||||
* | The pkgconfig file should be installed relative to the library dir | lloyd | 2015-01-07 | 1 | -8/+0 |
| | | | | | | rather than the base destdir. Pointed out by hexchain in github pull 38. Version the docdir with the full version incl patch. | ||||
* | Fix install script under Python3 | lloyd | 2015-01-06 | 1 | -1/+1 |
| | |||||
* | Fix System_RNG for Windows, fix nmake clean target | lloyd | 2014-12-22 | 1 | -1/+1 |
| | |||||
* | Enable system_rng on Windows and MinGW (untested) | lloyd | 2014-12-21 | 2 | -0/+2 |
| | |||||
* | Stack protector flags are required also at link time, at least on MinGW | lloyd | 2014-12-21 | 1 | -3/+3 |
| | | | | Github issue 34 | ||||
* | Always need boost_system in cmdline due to asio | lloyd | 2014-12-20 | 1 | -1/+1 |
| | |||||
* | Add MinGW support for the CryptoAPI RNG. Also disable the dependencies | lloyd | 2014-12-17 | 1 | -9/+0 |
| | | | | | | | | in auto_rng for a working entropy source as in situations where it doesn't work almost none of the library builds. Disable boost by default from the library. Github issue 34. Unrelated - remove long dead Tru64 as a target. | ||||
* | New download directory structure. | lloyd | 2014-12-17 | 1 | -5/+5 |
| | | | | Point users at github issues instead of bugzilla. | ||||
* | Fix Windows build. Github issue 32 | lloyd | 2014-11-26 | 3 | -7/+4 |
| | |||||
* | Add a new Python install script and clean up the makefile templates | lloyd | 2014-11-12 | 5 | -59/+17 |
| | |||||
* | Windows/VC build fixes | lloyd | 2014-10-31 | 1 | -1/+1 |
| | |||||
* | Use -O2 instead of -O3 with GCC as it seems tree-vectorize in 4.9.0 | lloyd | 2014-10-31 | 1 | -2/+2 |
| | | | | causes problems when it converts unaligned loads to aligned SSE loads. | ||||
* | Erroring on strict-overflow is a little too strict, GCC 4.9 is smart | lloyd | 2014-05-26 | 1 | -18/+17 |
| | |||||
* | VC2013 doesn't support __func__. Github #22 | lloyd | 2014-05-15 | 1 | -0/+6 |
| | |||||
* | Support restricting compiler ISAs to specific architectures. Specifically | lloyd | 2014-05-01 | 1 | -1/+1 |
| | | | | | to work around weird MSVC limitations in 32-bit mode, but maybe useful elsewhere someday. Github #11. | ||||
* | Darwin features | lloyd | 2014-04-05 | 1 | -0/+2 |
| | |||||
* | NetBSD portability fix and some performance tweaks in locking allocator | lloyd | 2014-04-05 | 1 | -1/+1 |
| | |||||
* | Add --program-suffix option to configure | lloyd | 2014-03-22 | 3 | -11/+8 |
| | |||||
* | Let Clang choose whichever C++ library it prefers | lloyd | 2014-03-13 | 1 | -4/+3 |
| | |||||
* | Add --destdir option to configure.py | lloyd | 2014-02-13 | 1 | -1/+1 |
| | |||||
* | Add config and version subcommands | lloyd | 2014-02-13 | 1 | -0/+5 |
| | |||||
* | Also avoid tuning for 686 | lloyd | 2014-02-13 | 1 | -1/+2 |
| | |||||
* | Update Clang flags. Remove unneeded includes of init.h | lloyd | 2014-02-09 | 1 | -3/+4 |
| | |||||
* | More fixes for minified builds | lloyd | 2014-02-09 | 2 | -2/+2 |
| | |||||
* | Install command line app | lloyd | 2014-02-08 | 2 | -0/+7 |
| | |||||
* | Fix Windows feature macro defines | lloyd | 2014-02-02 | 1 | -3/+2 |
| | |||||
* | Microsoft docs indicate VC++ 2013 has AVX2 intrinsics, so enable them. | lloyd | 2014-01-31 | 1 | -1/+1 |
| | |||||
* | If the build compiler doesn't support intrinsics we need, disable the module | lloyd | 2014-01-26 | 1 | -0/+12 |
| | | | | | rather than causing the whole build to fail. Also mark MSVC as supporting intrinsics (except AVX2 which seemingly is not yet supported). Github issue 7. | ||||
* | Set -msse2/-maltivec as needed on things that depend on the SIMD wrapper. ↵ | lloyd | 2014-01-24 | 2 | -0/+2 |
| | | | | Bug 264 | ||||
* | Typo fix | lloyd | 2014-01-20 | 1 | -5/+5 |
| | |||||
* | Fix make clean, removed too much | lloyd | 2014-01-18 | 1 | -1/+1 |
| | |||||
* | Website tweaks. Rename TLS suite script options. | lloyd | 2014-01-11 | 2 | -2/+1 |
| | |||||
* | Correct Sphinx template paths | lloyd | 2014-01-11 | 1 | -2/+2 |
| | |||||
* | Split up docs into the reference manual, the website, and everything else. | lloyd | 2014-01-10 | 6 | -85/+94 |
| | | | | | | | | | | | Add `website` target to makefile. Some progress towards fixing minimized builds. TLS now hard requires ECDSA and GCM since otherwise a minimized build has only insecure options. Remove boost_thread dependency in command line tool | ||||
* | Remove test in clean target | lloyd | 2014-01-10 | 2 | -2/+2 |
| | |||||
* | Split up test vectors into per-algo files and app into botan-test for | lloyd | 2014-01-10 | 2 | -8/+28 |
| | | | | the tests and botan for everything else. | ||||
* | Finish rename | lloyd | 2014-01-07 | 9 | -9/+9 |
| | |||||
* | Make the shared library an included fragment like python | lloyd | 2014-01-07 | 5 | -139/+31 |
| | | | | | Renamed make target to gmake because I'm pretty sure += and ifdef on variables is gmake specific. | ||||
* | Move python to src, add to main makefile | lloyd | 2014-01-07 | 3 | -20/+15 |
| | |||||
* | Correct path to lib sources in Doxygen config (bugzilla 259) | lloyd | 2014-01-06 | 1 | -1/+1 |
| | |||||
* | Don't use -fno-inline-functions for debug as that is enabled in all ↵ | lloyd | 2014-01-04 | 2 | -2/+2 |
| | | | | non-release builds now | ||||
* | Fix sphinx config sys.path | lloyd | 2014-01-02 | 1 | -1/+1 |
| | |||||
* | Move Sphinx config | lloyd | 2014-01-02 | 3 | -0/+258 |
| | |||||
* | Cull remaining mostly dubious examples. Also remove readme.txt | lloyd | 2014-01-01 | 1 | -2/+1 |
| | |||||
* | Move asio tls server | lloyd | 2014-01-01 | 1 | -1/+1 |
| |