| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| |
| |
| |
| | |
ac4d8fecb28374d06094da3457aa1e23f77dfa52)
to branch 'net.randombit.botan.c++0x' (head 00f0eecf3374a14b6ab907bd235488f902608de4)
|
| |
| |
| |
| | |
system before returning a new instance.
|
| |
| |
| |
| | |
Sort files in an attempt to help out the compression algorithm.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Add a custom install target to users can select specific things to enable
or disable.
Add api.pdf and tutorial.pdf, if they are available in the tree (otherwise skip)
Add the set of examples as part of the documentation package.
Require at least Windows 98 or 2000 since some code in the entropy
gathering routines requires functions (CryptGenRandom and Toolhelp32)
which are only available on these systems or later.
Set the VersionInfoVersion (viewable via the Properties menu on the setup .exe)
|
| |
| |
| |
| | |
written out by the local Python using Win32 line endings.
|
| |
| |
| |
| | |
to conver the line endings of text files (.txt, .h) to Win32's CRLF.
|
| | |
|
| | |
|
| |
| |
| |
| | |
in nmake, causes strange linker errors without any obvious cause.
|
| | |
|
| |
| |
| |
| |
| | |
--disable-shared disables DLL options, and don't define _CONSOLE in the
library build.
|
| | |
|
| | |
|
|\|
| |
| |
| |
| |
| | |
b431f4bc404f3ed4a5332b69100ff903fbbb1d6a)
to branch 'net.randombit.botan.c++0x' (head a5eb5edada5e025f7c85c096dc59a467cae4aba6)
|
| |
| |
| |
| |
| | |
that anyone needs either of these, but it appears like they may be useful
if you're doing unusual stuff like C++/CLI.
|
| |
| |
| |
| |
| |
| |
| | |
to cause random crashes during the test suite. With /MD they go away.
I don't know enough about Windows development to know what this means...
I'm sure it makes sense to somebody. Anyway, going with something that
appears to function.
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
huge (60+ Mb!); the DLL should be smaller due to link-time merging making
it viable to distribute binaries.
|
| |
| |
| |
| |
| |
| |
| | |
empty anyway.
For VC++ (only user) set BOTAN_DLL to dllimport by default (for apps), and then
redefine as dllexport when building the library.
|
| |
| |
| |
| | |
causes <botan/XXX> to be visible as expected.
|
| | |
|
| |
| |
| |
| | |
Untested, almost certainly doesn't work.
|
| |
| |
| |
| |
| | |
boils down to BigInt::swap, which uses the memvec swap). Checking with
g++ 4.5 -O3 shows it compiles down the same code as before.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
(timing the test suite) there doesn't seem to be much of a difference either
way, but putting printfs in the implementations shows they are being used.
Since they pretty much can't possibly hurt (right?) and might well help a
lot in certain cases, it's worth including.
Todo: adding overloads to binary operators taking move operations might
be nice. Details in http://cpp-next.com/archive/2009/09/making-your-next-move/
|
|\ \
| |/
|/|
| |
| |
| | |
2f3665f775fafbdfa517ecdca7f872e35bd90277)
to branch 'net.randombit.botan.c++0x' (head 45169719ddd8977b1eb20637576bc855dbc867a0)
|
| |
| |
| |
| | |
there is no chance that C++0x support will be added to them at any point.
|
| |
| |
| |
| |
| | |
Convert to_u32bit to use the new C++0x library func stoul instead of
hand-written code.
|
| | |
|
| |\
| | |
| | |
| | |
| | |
| | | |
23f95467137a0531f74574d1e3eb822734f0c5f2)
to branch 'net.randombit.botan.c++0x' (head 427be8496e669880b1bf532eb829ebbdbeaf34c9)
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
in the RSA and DSA ops.
|
| | |
| | |
| | |
| | |
| | |
| | | |
constraints there isn't that much parallelization to extract. Slightly
faster; better for smaller key sizes as once a certain point is reached
one thread is doing a lot more work than the other.
|
| | |
| | |
| | |
| | | |
on key size on a Core2.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
one of them off in a new thread and compute the other on the current thread.
Performance on my Core2 shows a 60 to 90% improvement in overall speed in
RSA private key operations. Will probably be even better once std::async
is available (not currently in GCC) since it will probably use a thread pool
which will amortize the thread creation/shutdown cost.
|
| | |
| | |
| | |
| | |
| | | |
them as private variables for operator= and copy constructors that shouldn't
be used.
|
| | |
| | |
| | |
| | | |
initializer_list<Filter*>
|
| | |\
| | | |
| | | |
| | | |
| | | |
| | | | |
0ac5a29496b4e50775827d9655c064f6d1c98813)
to branch 'net.randombit.botan.c++0x' (head 3232da044d41756582b53da9d14c3ac07e9b2916)
|
| | | |\
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
cfb19182987fc95b2a8885584a38edb10b4709b3)
to branch 'net.randombit.botan.c++0x' (head 1570877c463fed4b632bc49a5b5ee27c57de2cb5)
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
for std::thread, and to ensure that std::mutex actually maps to a real
mutex and not a no-op.
Don't explicitly define _REENTRANT; -pthread will handle that if necessary.
|
| | | |\ \
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
8cecdc1c3dd5853823fabcb816400dd467b3c04a)
to branch 'net.randombit.botan.c++0x' (head 39a585195a07f18628f6216a276402ed92567cc3)
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
It will be nice to convert to the range-based for loop once that's available.
|
| | | | | | |
|
| | | | | | |
|