Re: [openssl-users] Another record-breaking donation from Smartisan Technology

2014-12-30 Thread Harlan Stenn
That is just *awesome*! -- Harlan Stenn http://networktimefoundation.org - be a member! ___ openssl-users mailing list openssl-users@openssl.org https://mta.opensslfoundation.net/mailman/listinfo/openssl-users

Re: comment on donations

2014-04-11 Thread Harlan Stenn
Honoring Reply-to ... Steve, please let me know what you learn. I'm going thru similar things with Network Time Foundation because of the recent DDoS issue involving NTP. Our donations "bump" after that issue was much smaller than yours, but at least we got a few more donations

Re: OpenSSL CA and signing certs with SANs

2014-01-06 Thread Harlan Stenn
You might want to ask the CAcert folks what they do. I generate certs thru them with SANs all the time. -- Harlan Stenn http://networktimefoundation.org - be a member! __ OpenSSL Project http

List of available digest algorithms

2013-09-25 Thread Harlan Stenn
OBJ_sn2nid() doesn't contain the full list of supported digest methods. How can I find this list using the library? I cannot fork/exec 'openssl list-digest-algorithms' and crack the output as a solution. -- Harlan Stenn http://networktimefoundation.org

'make test' failure on 0.9.8g

2007-11-07 Thread Harlan Stenn
(Please leave me on the Cc: list - I'm not subscribed.) I'm seeing the following when I run "make test": ... Testing cipher AES-128-ECB(encrypt) Key 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f Plaintext 00 11 22 33 44 55 66 77 88 99 aa bb cc dd ee ff Ciphertext 69 c4 e0 d8 6a 7

Re: gcc warnings from a handful of headers

2001-09-08 Thread Harlan Stenn
Thanks, and since we're not using g++ here we don't see that problem. I did say it was a bad hack... Looking forward to 0.9.7. Harlan -- > > warning: function declaration isn't a prototype > > Many, if not most, of these are in the ASN.1 code, which is being > replaced for 0.9.7. Some

gcc warnings from a handful of headers

2001-09-08 Thread Harlan Stenn
There are a handful of header files in the openssl distribution that produce warnings from gcc like: warning: function declaration isn't a prototype These are usually from sections of code that look like (*foo)(), which I have hackishly "fixed" by changing them to (*foo)(void) . This is