Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-02-22 | Update copyright years | Matthias Schiffer | |
2015-06-22 | salsa20{,12}/xmm: avoid symbol conflicts with libnacl | Matthias Schiffer | |
Also remove some dead code | |||
2015-03-24 | Make build dependencies more configurable | Matthias Schiffer | |
2015-01-14 | Update copyright years | Matthias Schiffer | |
2015-01-11 | doc: move comments from generated source files to headers | Matthias Schiffer | |
Unfortunately, Doxygen stopped interpreting the .c.in files as C source files a while ago. Move the comments to the header files to avoid the Doxygen warnings. | |||
2014-09-06 | Move UNUSED attribute to the start of arguments to help editors understand ↵ | Matthias Schiffer | |
the syntax | |||
2014-09-03 | Fix UHASH build on *BSD | Matthias Schiffer | |
2014-09-01 | Add alloc helpers for aligned allocations | Matthias Schiffer | |
2014-08-28 | Add UHASH implementation | Matthias Schiffer | |
2014-08-28 | Revert "Experimental HMAC-SHA1 implementation" | Matthias Schiffer | |
We don't really want to support it, and it's slower than GHASH... This reverts commit 9bf498263765328011ee105e5e7b3e1cc1b2bc3f. | |||
2014-08-25 | Experimental HMAC-SHA1 implementation | Matthias Schiffer | |
This adds experimental support for <cipher>+hmac-sha1 methods. It currently depends on OpenSSL and is not yet ready for production use. | |||
2014-08-25 | MAC: rename hash() to digest() and change length unit from blocks to bytes | Matthias Schiffer | |
2014-08-24 | Coding style: always add a space between a pointer's type and the * | Matthias Schiffer | |
2014-08-02 | Introduce and use alloc helpers | Matthias Schiffer | |
These new helpers will terminate fastd on allocation failures and add some additional convenience (allow strdup with NULL; typesafe new(type) macros). | |||
2014-06-28 | Fix build with ENABLE_OPENSSL | Matthias Schiffer | |
2014-06-12 | Remove an unused variable | Matthias Schiffer | |
2014-06-08 | Add ENABLE_LTO cmake option | Matthias Schiffer | |
Tested with GCC and clang; unlikely to work with other toolchains, so it's disabled by default. | |||
2014-05-29 | Document *everything* | Matthias Schiffer | |
2014-05-29 | Simplify configuration of cipher and MAC implementations | Matthias Schiffer | |
Let the cipher and MAC handlers just store the chosen implementations themselves instead of relying on the global configuration. | |||
2014-05-27 | Remove fastd_true() | Matthias Schiffer | |
2014-04-30 | Fix CMake errors on some config combinations | Matthias Schiffer | |
2014-04-24 | Convert few more counters to size_t, just for the sake of consistency... | Matthias Schiffer | |
2014-04-20 | Make conf global | Matthias Schiffer | |
2014-04-10 | Use #pragma once | Matthias Schiffer | |
2014-03-14 | Adjust copyright years | Matthias Schiffer | |
2014-03-13 | Rename USE_LIBSODIUM and USE_OPENSSL cmake flags to ENABLE_LIBSODIUM and ↵ | Matthias Schiffer | |
ENABLE_OPENSSL | |||
2014-01-25 | Mark assembler files as not needing executable stack | Matthias Schiffer | |
2013-12-26 | Only fail due to missing pclmul support if the pclmulqdq GHASH ↵ | Matthias Schiffer | |
implementation is actually enabled | |||
2013-12-26 | Check if the compiler supports -mpclmul | Matthias Schiffer | |
2013-12-14 | Remove blowfish-ctr cipher, it's much slower than Salsa20 and probably less ↵ | Matthias Schiffer | |
secure | |||
2013-12-04 | Change xor and xor_a back to work on pointers | Matthias Schiffer | |
For some reason, this makes GCC generate much better code on MIPS with -Os | |||
2013-12-01 | Add fast SSE2 implementations "xmm" for Salsa20 and Salsa20/12 | Matthias Schiffer | |
Public Domain implementations by D. J. Bernstein, see http://cr.yp.to/snuffle.html | |||
2013-12-01 | Remove a few `aligned' attributes that don't make sense | Matthias Schiffer | |
2013-11-30 | Make the crypto implementations independent of fastd.h (and fix more minor bugs) | Matthias Schiffer | |
2013-11-30 | Make crypto implementation configurable (and update a few error messages) | Matthias Schiffer | |
2013-11-30 | Perform string-based lookup of method-related information only once | Matthias Schiffer | |
2013-11-30 | Remove cipher and MAC contexts | Matthias Schiffer | |
Not a single implementation was using them... | |||
2013-11-29 | Revert "crypto: separate cipher/MAC availability check from information request" | Matthias Schiffer | |
This reverts commit d0707b161d10cf79242d40b24853988c89c7604a. | |||
2013-11-29 | crypto: separate cipher/MAC availability check from information request | Matthias Schiffer | |
2013-11-29 | Compile with -std=c99 and restructure some code to ensure there is no ↵ | Matthias Schiffer | |
invalid aliasing (hopefully) | |||
2013-11-28 | ghash-pclmulqdq: fix one left usage of a __builtin pclmulqdq instead of the ↵ | Matthias Schiffer | |
_mm version | |||
2013-11-28 | ghash-pclmulqdq: rework implementation to allow both GCC and Clang to ↵ | Matthias Schiffer | |
generate fast code | |||
2013-11-28 | ghash-pclmulqdq: make byteswap a macro | Matthias Schiffer | |
For some reason, this allows clang to optimize the code much better. | |||
2013-11-28 | ghash-pclmulqdq: speed up multiplication using the Karatsuba algorithm | Matthias Schiffer | |
2013-11-28 | Add a pclmulqdq ghash implementation | Matthias Schiffer | |
2013-11-27 | Allow checking if a crypto algorithm is available at runtime | Matthias Schiffer | |
2013-11-27 | Add OpenSSL-based aes128-ctr implementation | Matthias Schiffer | |
2013-11-25 | Move crypto algorithm information out of implementation | Matthias Schiffer | |
2013-11-25 | Move cipher and mac structures to a new header | Matthias Schiffer | |
2013-11-21 | Add salsa20/12 cipher | Matthias Schiffer | |