aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* LoadLibrary apparently works on MinGWlloyd2011-12-021-0/+1
* GCC doesn't like casting a function pointer to void* without anlloyd2011-12-021-1/+2
* Add AltiVec detection on OpenBSD, contributed by Brad Smith in PR 162lloyd2011-11-281-1/+15
* Call cpuid via inline asm on x86-64, so we can use it with Clang (nolloyd2011-11-181-2/+16
* Add model name for Sandy Bridge. Use -march=corei7 with GCC and Clanglloyd2011-11-183-12/+16
* Fix declarationlloyd2011-11-181-2/+1
* Manually rename registers instead of rotating. Performance is aboutlloyd2011-11-181-638/+638
* Poll clock_gettime in High_Resolution_Timestamp::poll with whateverlloyd2011-11-112-1/+39
* Add AltiVec detection for POWER7 processorslloyd2011-11-021-0/+2
* Don't set the soname on OpenBSD (PR 158)lloyd2011-10-111-0/+3
* Name the params for DER_Encoder in headerlloyd2011-10-061-24/+47
* Avoid using -march=i386 if an i386 is 'detected', instead uselloyd2011-08-151-2/+5
* Add a new, somewhat more functional dist scriptlloyd2011-07-111-0/+168
* The Algorithm_Factory has this logic on looking for an object:lloyd2011-07-054-8/+31
* Tick to 1.10.1 unreleased.lloyd2011-06-302-0/+3
* Make CMAC::poly_double at least theoretically constant time, thoughlloyd2011-06-231-3/+2
* Fix -Wshadow warninglloyd2011-06-221-2/+2
* Invert the meaning of the Miller-Rabin test; passes_test meant 'is notlloyd2011-06-161-9/+17
* Detect (though not using) the CPUID bit for the RDRAND instructionlloyd2011-06-161-1/+8
* Add std::swap specialization for memory containerslloyd2011-06-131-0/+10
* Write zeros in 4K blockslloyd2011-06-071-7/+9
* Simplify Montgomery setup here a bitlloyd2011-06-071-6/+4
* Rename some dirs for shorter object files where configure willlloyd2011-06-0313-2/+2
* Ignore \r as whitespace in base64 decoder - caused test failures onlloyd2011-06-031-1/+3
* Fix building with --via-amalgamation; it wouldn't generate thelloyd2011-06-035-432/+449
* Remove BOTAN_DLL from internal headers, add it to Unexpected_Messagelloyd2011-06-024-14/+14
* Change order of arguments to bigint_monty_redc (internal interface,lloyd2011-06-023-46/+43
* Add monty sqr and multiply routines (they just call karatsuba and thenlloyd2011-06-024-43/+77
* Reduce number of temporaries needed in point additionlloyd2011-06-011-22/+14
* Multi-expoentiation, using the single bit variation. Using a 2 or 3lloyd2011-06-014-2/+49
* Remove amalg on distcleanlloyd2011-06-012-0/+2
* PointGFp::get_affine_{x,y} doesn't return a referencelloyd2011-05-311-2/+2
* MinGW install commands are the default, so don't specify explicitly.lloyd2011-05-262-5/+2
* Explicitly specify the types for make_pair when passing a const arraylloyd2011-05-241-2/+10
* Split the SIMD implementations into their own modules and choose onelloyd2011-05-2412-16/+41
* FD_ZERO on Solaris uses memset, and assumes we included string.hlloyd2011-05-242-0/+2
* Only call p.sig_words once in CurveGFp constructor.lloyd2011-05-191-4/+2
* Move the curve over GF(p) code back into its own subdirlloyd2011-05-197-7/+22
* Reject s == 0 or r == 0 in a ECC signature.lloyd2011-05-192-2/+5
* Small cleanup in the Barrett reducer, now doesn't create a temp iflloyd2011-05-182-33/+35
* Fix the very basic operations for encoding and decoding alloyd2011-05-172-12/+10
* Modify ECC points to do all math in Montgomery form, rather thanlloyd2011-05-174-156/+144
* Add RSA constructor that does not require a password. Patch submittedlloyd2011-05-161-0/+18
* Fixes for base64 incremental decoding.lloyd2011-05-164-122/+54
* Always writing to/reading from the carry word makes valgrind unhappy.lloyd2011-05-161-1/+2
* The new method of doing comparisons did not work all of the time: iflloyd2011-05-131-1/+3
* Add specialization for i486 that uses -mtune=generic, as Debianlloyd2011-05-132-13/+12
* I can't spelllloyd2011-05-134-9/+9
* Fix the problem that prevented the SSE2 IDEA implementation fromlloyd2011-05-122-6/+1
* Add base64_decode. Seems to work OK, though incremental decoding islloyd2011-05-124-10/+222