aboutsummaryrefslogtreecommitdiffstats
path: root/misc
Commit message (Collapse)AuthorAgeFilesLines
* Make the size of the random value used to blind the private keylloyd2008-04-121-0/+1
| | | | operations (to prevent timing attacks) a compile time constant.
* Make the memory allocator's chunk size a compile time constant, via alloyd2008-04-121-0/+1
| | | | new build.h macro BOTAN_MEM_POOL_CHUNK_SIZE
* Change the copyrights in all files in the Botan tree to directly reflectlloyd2008-04-1017-17/+17
| | | | | | the actual copyright holders. For rationale, see my post to botan-devel on April 9, subject 'Changing license to directly reflect contributors' (http://www.randombit.net/pipermail/botan-devel/2008-April/000527.html)
* Don't hard-code the user and group when doing an install: instead uselloyd2008-04-0610-25/+3
| | | | | whatever the current user/group is. If you wish to override, edit the makefile or override the INSTALL_CMD_* variables on the command line.
* On NetBSD with GCC, define _NETBSD_SOURCE; according to a report on thelloyd2008-03-101-1/+1
| | | | Monotone mailing list, it was needed for a build.
* merge of '3d9e9476c5b2a2ee125eee7e0dd10bfe460d0546'lloyd2007-12-2431-482/+18
|\ | | | | | | and '9fe0310805932b889bdfa17c9213f2b97d47ab6a'
| * Remove the ability to load an external configuration file. Applicationslloyd2007-11-141-225/+0
| | | | | | | | | | | | | | | | | | | | | | needing this functionality probably already have a preexisting configuration system that they would rather use. Also remove the documentation about this feature, and the example configuration (which was pretty out of date, anyway). RFC on this change sent to the mailing list on 11-13-2007, no responses after 24 hours. It seems quite likely this code is not in use anywhere.
| * Add /Zi to debug flags for Visual Studiolloyd2007-11-111-1/+1
| |
| * Fix flags for Core2 optimizations with Intel C++lloyd2007-10-231-1/+1
| |
| * Build Alpha as little-endian by default.lloyd2007-10-211-0/+1
| |
| * Make i686 the x86 default CPU (used if the user just says 'x86' or equivalent)lloyd2007-10-211-1/+1
| |
| * Remove the checks that the compiler specified works on the given OS/CPU.lloyd2007-10-2126-255/+1
| | | | | | | | | | All too often this information gets out of of date, so trust the user is specifying something that makes sense if they use --cc, --cpu, or --os.
| * Use new options for ICC 10.0lloyd2007-10-211-6/+6
| |
| * Intel C++ looks to prefer icpc instead of icc (in order to get the thelloyd2007-10-201-2/+2
| | | | | | | | runtime linked in). Also, -KPIC has been disfavored, replaced by -fPIC.
| * Make mswin32 an alias for Windows so we will detect it by comparing itlloyd2007-10-201-0/+1
| | | | | | | | with Perl's $^O
| * Mark both 32 and 64 bit PowerPC as big endian. Both have little endianlloyd2007-10-192-0/+4
| | | | | | | | variants but AFAIK they are quite rare or perhaps completely extinct now.
| * Mark x86 and x86-64 as supporting unaligned memory accesseslloyd2007-10-192-0/+2
| |
| * Add x86-64 to the list of Darwin/OS X platformslloyd2007-09-131-0/+1
| |
* | Add amd64 to list of Darwin/OS X platformslloyd2007-08-291-0/+1
|/
* Add a couple more aliases for Core 2lloyd2007-05-311-0/+3
|
* Mark 32-bit SPARC as big-endian, since SPARC didn't offer little-endianlloyd2007-05-171-0/+2
| | | | support until SPARCv9.
* Add a new preprocessor macro defining the endian-ness of the target CPU.lloyd2007-05-172-0/+4
| | | | | | Currently it is only set for x86 and x86-64 as they are two of the few architectures which are not bi-endian, and we're not doing any detection (nor is there any way for a user to override the selection yet).
* Fix the static-only Unix makefile, it was referencing the 'botan_config'lloyd2007-03-041-1/+1
| | | | variable which was not set; it should have been 'botan-config'.
* Handle out of tree builds a little better.lloyd2007-03-043-8/+8
|
* Define _QNX_SOURCE when compiling under QNX, according to reports on thelloyd2007-02-281-1/+1
| | | | mailing list this is required for a successful build.
* Bump copyright year to 2007 in misc/lloyd2007-01-2017-17/+17
|
* Missed a bit of gunk when I renamed the files in the NIST X.509 testslloyd2006-12-1694-0/+0
| | | | directory before.
* Bring the RPM spec file up to date.lloyd2006-12-141-12/+16
|
* Remove the use of the machine-specific optimization flags, as they havelloyd2006-12-141-9/+1
| | | | been removed in Visual Studio 2005.
* Also remove build.h from the distclean target for nmakelloyd2006-12-141-0/+1
|
* Update the Python version of the testsuite to use the new filename schemelloyd2006-12-141-2/+2
|
* Rename the files in the NIST X.509 certificate path validation suite tolloyd2006-12-14476-5/+5
| | | | | | be shorter, with no embedded spaces. Also update the C++ test program to look for the new filenames.
* Update the GTK example to use the new pulse interface.lloyd2006-12-143-27/+30
|
* Comment out some problematic code so at least the Python extension can buildlloyd2006-12-111-0/+2
|
* Check in some old (very minor) changes to the Python wrapper codelloyd2006-12-091-2/+4
|
* Convert the makefile for the GTK+ example to a generic Unix makefilelloyd2006-12-082-24/+18
|
* Various small improvements for x86-64 architectures, and better supportlloyd2006-11-243-7/+19
| | | | for the EKOpath C/C++ compiler.
* ICC supports x86-64 nowlloyd2006-11-061-0/+1
|
* Somewhat better public key support, though I have a feeling this is notlloyd2006-10-281-6/+38
| | | | really the right approach.
* Drop todo.txt from misc/config, as most of the things listed have alreadylloyd2006-10-122-35/+1
| | | | | | been done. Change the header comment in buildh.in
* Split up all the 'base' algorithm classes into different fileslloyd2006-09-294-71/+116
| | | | Significant improvements to the public key wrappers.
* Use -momit-leaf-frame-pointer on x86 and x86-64lloyd2006-09-261-6/+3
|
* Add core2duo as an arch alias for amd64lloyd2006-09-261-0/+1
|
* Opteron and Athlon64 were marked as both aliases and submodels of AMD64.lloyd2006-09-151-6/+2
| | | | | Since no current compiler makes a distinction among different x86-64 CPUs, they've been changed to arch aliases.
* Drop this, probably shouldn't have been included in the first place.lloyd2006-09-101-16/+0
|
* Check in some very preliminary code for wrapping public keyslloyd2006-09-102-12/+68
| | | | Some fixes to the Filter code, though it is still not entirely functional.
* Lowercase the link command, no sense in shouting.lloyd2006-09-101-1/+1
|
* Fix the clean and install targets in the makefileslloyd2006-09-093-11/+11
| | | | Clean up how help output is produced a bit further.
* Do put a space after -c/-o options, except for Visual C++, which can'tlloyd2006-09-0911-22/+22
| | | | deal with it.
* Fix a bug when generating nmake-style makefiles.lloyd2006-09-081-1/+1
| | | | | | Make sure to close the output file in process_template Work around some Visual Studio command-line brain damange.