K 10 svn:author V 5 simon K 8 svn:date V 27 2006-07-28T23:00:16.000000Z K 7 svn:log V 448 Do not put BN_CTX structures on the stack, but instead allocate them runtime using BN_CTX_new(). This is done since in OpenSSL 0.9.7e we can only allocate BN_CTX on the stack by including an internal OpenSSL header file, and in OpenSSL 0.9.8 BN_CTX is entirely opaque, so having it on the stack is not possible at all. This is done as preparation for OpenSSL 0.9.8b import. Tested on: amd64 i386 ia64 Tested with: src/tools/regression/lib/libmp END