| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
than OpenSSL... that's a problem for another branch though).
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
Remove support for (unused) modset settings.
Move tss, fpe, cryptobox, and aont to new dir constructs
|
| |
|
|
|
|
|
|
|
|
| |
containers (specifically vector).
Rename is_empty to empty
Remove has_items
Rename create to resize
|
| |
|
|
|
|
| |
included. Threads are a smarter approach, in retrospect.
|
|
|
|
| |
Useful to avoid emacs droppings like '.#bswap.h'
|
|
|
|
| |
build magic, name them asm_macr_ARCH.h. Change all including files accordingly.
|
| |
|
|
|
|
|
|
| |
2 is not in the primes table). Also ensure that a >= b; this guarantees
that log_a(b) is <= 1 and thus only 3 rounds (instead of 8 used before)
is sufficient.
|
| |
|
|
|
|
| |
onto other CCNs with valid checksums.
|
| |
|
|\
| |
| |
| |
| |
| | |
586495311cff277e7a24b4116c987b79036d94e6)
to branch 'net.randombit.botan.fpe' (head c6e8324b12e509ac1303078d5e716f08c53acff5)
|
| |\
| | |
| | |
| | |
| | |
| | | |
0cb3295ee48403828c652064fbf72ddb6edbe13c)
to branch 'net.randombit.botan.fpe' (head 954d50f368db4be7d98c5c32c474bc54ec5ea7f3)
|
| | |
| | |
| | |
| | |
| | |
| | | |
Format-Preserving Encryption (http://eprint.iacr.org/2009/251). This
doesn't implement the rank functions which are necessary for the actual
format-preserving part, though that would be nice to add to the example.
|
| | | |
|
| | |
| | |
| | |
| | | |
the Alpha EV67 and MIPS R10000.
|
| | |
| | |
| | |
| | | |
the same as an UltraSPARC for optimization purposes.
|
| | |
| | |
| | |
| | | |
x64 as another arch alias since some people seem to use it.
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
to give a 3-7% speed improvement on Core2 with GCC.
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
an extra 4 words at the end of EK for writing (unused) values.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Currently requires SSE4.1 for _mm_extract_epi32 for the key schedule, it
would be nice to remove this dependency, though all currently known/scheduled
chips with AES-NI (Intel Westmere and Sandy Bridge, and AMD Bulldozer) are
supposed to include SSE 4.1 so this is not a huge problem.
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
which is currently just a stub returning false.
|
| | |
| | |
| | |
| | |
| | | |
No noticable change under the simulator (no surprises there), but should help
a lot with pipelining on real hardware.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
tests under Intel's emulator.
Document and enable in the engine.
Merge both versions to aes_intel.cpp - some shared code and much similiar
structure which might be sharable via macros.
|
| | | |
|
| | |
| | |
| | |
| | | |
testing with Intel's emulator shows all green.
|
| | |
| | |
| | |
| | |
| | |
| | | |
AES-256 blocks, plus a handful remaining in a general AES block.
This is necessary for any implementation which only supports a particular
key size, since otherwise no tests at all will run on that implementation.
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
virtual-ness not needed, and was overriding/overloading by argument which
doesn't actually work in C++ and only happened to work because it was only
ever used with the version implemented in that same class. ICC was warning,
too. Make non-virtual.
|
| | |
| | |
| | |
| | | |
credits.txt and thanks.txt. Remove some various bits of formatting weirdness.
|
| | |
| | |
| | |
| | |
| | |
| | | |
included elsewhere and my preference is for the only emails to be in
credits.txt since emails change more often than names and I'd prefer them
not to be constantly either wrong or needing updates.
|
|/ /
| |
| |
| |
| |
| |
| | |
the user to specify the hash function to use, instead of always using SHA-1.
This was a sensible default a few years ago, when there wasn't a ~2^60 attack
on SHA-1 and support for SHA-2 was pretty much nil, but using something else
makes a lot more sense these days.
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
the AES and PCLMUL instructions. Oddness. For the time being, compile
Nehalem and Westmere as Core2 + extras, probably close enough.
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
on a particular ISA extension rather than a list of CPUs. Much
easier to edit and audit, too. Add markers on the AES-NI code and
SHA-1/SSE2. Serpent and XTEA don't need it because they are
generic and only depend on simd_32 which will silenty swap out a
scalar version if SSE2/AltiVec isn't enabled (since it turns out
on supersclar processors just doing 4 blocks in parallel can be a
win even in GPRs).
Add pentium3 to the list of CPUs with rdtsc, was missing. Odd!
|