diff options
author | lloyd <[email protected]> | 2011-04-29 16:59:29 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2011-04-29 16:59:29 +0000 |
commit | 93b5927837b75d9660084e83adf04c77a57fe4b3 (patch) | |
tree | e3946d10e67182cb5901a217ef1ccc90048b025e /readme.txt | |
parent | 96043ac4c4fdd4e7c23143097922843552b4aa9a (diff) |
Calling &str[str.size()] is only valid if str is const; otherwise the
results are undefined. This happens to work under GCC and most other
compilers, but does not under Visual C++ 2010. This broke hex_encode
when encoding an empty input, and this subsequently broke SSL
handshaking.
2010 includes a TR1 that works fine for SSL, but it puts the headers
in the main header space rather than under tr1/, so account for that.
Hack the socket header into working under WinSock
Tick version to 1.10.0
Diffstat (limited to 'readme.txt')
-rw-r--r-- | readme.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/readme.txt b/readme.txt index cc4ec178c..ef6f2c77d 100644 --- a/readme.txt +++ b/readme.txt @@ -1,4 +1,4 @@ -Botan 1.9.17, 2011-04-29 +Botan 1.10.0, Not Yet Released http://botan.randombit.net/ Botan is a C++ class library for performing a wide variety of |