aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-08-31 16:38:55 +0000
committerlloyd <[email protected]>2010-08-31 16:38:55 +0000
commit8bbe84e9f2d39212c389a39e7d2fa749e64068fd (patch)
tree36ae4ca2a2ce28b3e52d690181302e0a02818cda
parent228b6f34cac21c0c7d65cda31ef5b05059720a1a (diff)
Tick to 1.8.10 release 2010-08-311.8.10
-rwxr-xr-xconfigure.pl4
-rwxr-xr-xconfigure.py4
-rw-r--r--doc/log.txt4
-rw-r--r--readme.txt2
4 files changed, 7 insertions, 7 deletions
diff --git a/configure.pl b/configure.pl
index 50bdbe862..55b97729b 100755
--- a/configure.pl
+++ b/configure.pl
@@ -15,9 +15,9 @@ my $MAJOR_VERSION = 1;
my $MINOR_VERSION = 8;
my $PATCH_VERSION = 10;
-my $VERSION_SUFFIX = '-dev';
+my $VERSION_SUFFIX = '';
-my $SO_PATCH_VERSION = 10;
+my $SO_PATCH_VERSION = 2;
my $VERSION_STRING = "$MAJOR_VERSION.$MINOR_VERSION.$PATCH_VERSION$VERSION_SUFFIX";
my $SO_VERSION_STRING = "$MAJOR_VERSION.$MINOR_VERSION.$SO_PATCH_VERSION$VERSION_SUFFIX";
diff --git a/configure.py b/configure.py
index 8ef7ab5fb..45e897371 100755
--- a/configure.py
+++ b/configure.py
@@ -38,8 +38,8 @@ class BuildConfigurationInformation(object):
version_major = 1
version_minor = 8
version_patch = 10
- version_so_patch = 10
- version_suffix = '-dev'
+ version_so_patch = 2
+ version_suffix = ''
version_string = '%d.%d.%d%s' % (
version_major, version_minor, version_patch, version_suffix)
diff --git a/doc/log.txt b/doc/log.txt
index b44247c77..6687580d9 100644
--- a/doc/log.txt
+++ b/doc/log.txt
@@ -1,8 +1,8 @@
-* 1.8.10-dev, ????-??-??
+* 1.8.10, 2010-08-31
- Switch default PKCS #8 encryption algorithm from 3DES to AES-256
- Increase default hash iterations from 2048 to 10000 in PBES1 and PBES2
- - Use small tables in the first round of AES to make timing/cache attacks harder
+ - Use small tables in the first round of AES
- Add PBKDF typedef and get_pbkdf for better compatability with 1.9
- Add version of S2K::derive_key taking salt and iteration count
- Enable the /proc-walking entropy source on NetBSD
diff --git a/readme.txt b/readme.txt
index 9df41d0e2..00c368dcc 100644
--- a/readme.txt
+++ b/readme.txt
@@ -1,4 +1,4 @@
-Botan 1.8.10, ????-??-??
+Botan 1.8.10, 2010-08-31
Botan is a C++ class library for performing a wide variety of
cryptographic operations.