Revisions 0 to 10 in in which 'include/libstate.h' was changed are listed below. These revisions are ancestors of the revision [51b865be..]. The "diff" links listed with each revision will show changes in 'include/libstate.h' between that revision and [51b865be..].

169 days ago: propagate from branch 'net.randombit.botan' (head 51f9ee5180a5cacdfff31504266e883b7bb0eb00)
view file | diff | revision info | browse files
Author: lloyd@randombit.net
Changelog: propagate from branch 'net.randombit.botan' (head 51f9ee5180a5cacdfff31504266e883b7bb0eb00)
to branch 'net.randombit.botan.remove-libstate' (head 636b767b9686261418b1cb45a6271edeef87501b)
Date: Mon, 21 Apr 2008 18:53:06 GMT
169 days ago: Add BOTAN_DLL macro in all needed spots for working DLL export. Based
view file | diff | revision info | browse files
Author: lloyd@randombit.net
Changelog: Add BOTAN_DLL macro in all needed spots for working DLL export. Based
on a patch from Joel Low for MSVC, modified and tested with GCC using
-fvisibility=hidden and the visibility attribute.
Getting this working completely requires making the shared object and
static lib builds completely distinct (which is also a win since it
allows avoiding -fPIC usage, etc in the static lib).
Currently too many things are being exported, though it is an improvement
as internal-only code like the bigint_* functions are hidden.
Date: Mon, 21 Apr 2008 15:53:32 GMT
180 days ago: propagate from branch 'net.randombit.botan' (head 6afe2db1f710f75bc27e189bb8bdb23613ce1ca3)
view file | diff | revision info | browse files
Author: lloyd@randombit.net
Changelog: propagate from branch 'net.randombit.botan' (head 6afe2db1f710f75bc27e189bb8bdb23613ce1ca3)
to branch 'net.randombit.botan.remove-libstate' (head e40f0dbdfd847024c30fa0092c2acefc19a550b8)
Date: Thu, 10 Apr 2008 05:52:37 GMT
180 days ago: Change the copyrights in all files in the Botan tree to directly reflect
view file | diff | revision info | browse files
Author: lloyd@randombit.net
Changelog: Change the copyrights in all files in the Botan tree to directly reflect
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)
Date: Thu, 10 Apr 2008 02:47:51 GMT
183 days ago: Remove the Global_RNG namespace, along with rng.h and rng.cpp. This was
view file | diff | revision info | browse files
Author: lloyd@randombit.net
Changelog: Remove the Global_RNG namespace, along with rng.h and rng.cpp. This was
essentially a facade for the RNG object living in the global library state.
Rewrite all callers to directly invoke the global state object: this makes
it more clear what functions are actually accessing mutable state outside of
the normal reference graph (and thus, which functions will have to be
altered in order to remove this dependency). Other facades remain in place
for the configuration object and the memory allocator factory.
Date: Mon, 07 Apr 2008 14:08:27 GMT
183 days ago: Remove X509_GlobalState in favor of static function Extensions::get_extension
view file | diff | revision info | browse files
Author: lloyd@randombit.net
Changelog: Remove X509_GlobalState in favor of static function Extensions::get_extension
Date: Mon, 07 Apr 2008 05:35:44 GMT
183 days ago: Remove Charset_Transcoder; hardwire UTF-8/Latin-1 conversions into charset.cpp
view file | diff | revision info | browse files
Author: lloyd@randombit.net
Changelog: Remove Charset_Transcoder; hardwire UTF-8/Latin-1 conversions into charset.cpp
Date: Mon, 07 Apr 2008 01:51:28 GMT
183 days ago: In Botan, the Timer base class provides access to a high-resolution
view file | diff | revision info | browse files
Author: lloyd@randombit.net
Changelog: In Botan, the Timer base class provides access to a high-resolution
timer with an unspecified update rate and epoch. It is only used
inside the entropy sources to provide some timing-dependent
randomness. However, it is easier and basically 'as good' to treat the
timers as entropy sources in their own right and feed their output
directly into an entropy pool.
This commit removes Library_State::system_clock and all calls to that
function.
Date: Mon, 07 Apr 2008 01:41:17 GMT
183 days ago: Library_State::set_timer is never called from within Botan, low hanging
view file | diff | revision info | browse files
Author: lloyd@randombit.net
Changelog: Library_State::set_timer is never called from within Botan, low hanging
fruit for removal.
Date: Mon, 07 Apr 2008 01:14:53 GMT
183 days ago: The intent of this branch is to remove the global library state object
view file | diff | revision info | browse files
Author: lloyd@randombit.net
Changelog: The intent of this branch is to remove the global library state object
(Library_State, in libstate.{h,cpp}). It causes numerous 'interesting'
problems with threads, etc, and the best solution here is to move to
more or less an object-capability model, where the only objects that
a piece of code can access are those which can be referenced through
its arguments.
First things first, remove the UI 'pulse' code. It is neither necessary
nor sufficient for writing proper GUI/event driven code using Botan, has
likely never been used in real code, and, given that, causes a distressing
amount of overhead in terms of function calls made.
Date: Mon, 07 Apr 2008 01:00:05 GMT