Is there a roadmap, document repository or how-to for engne plugins?

2010-02-12 Thread Wendell Nichols
I have to write an engine plug-in for a crypto accel card and (of course) I have to go from knowing nearly nothing to having it done in about 8 to 10 weeks. Are there any resources for this particular endeavour? It will be splendid to have a leg up on this one :) Thanks Wendell Nichols __

[openssl.org #2170] [PATCH] Fix -c option in openssl dgst command

2010-02-12 Thread Magnus Lilja via RT
When adding the "-r" option, the old "-c" option stopped working due to a missing 'else'. This patch adds that missing 'else' which makes -c and -r working again. diff -ur openssl-1.0.0-beta5/apps/dgst.c openssl-work/apps/dgst.c --- openssl-1.0.0-beta5/apps/dgst.c 2009-10-15 19:18:03.

[openssl.org #2169] OPENSSL_cleanse does not handle zero length gracefully

2010-02-12 Thread Tomas Mraz via RT
The various OPENSSL_cleanse assembler implementations in contrast with the C implementation do not handle zero length gracefully - that is returning without touching the memory. Instead they overflow and segfault. Steps to reproduce: echo 'test' | openssl dgst -md5 -hmac '' -- Tomas Mraz No mat