ruby/ext/digest/rmd160/rmd160ossl.c
knu 5a55408b77 * ext/digest: Work around a build problem with VC++ 2010, likely
due to a bug of its cl.exe. [Bug #3231]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@28341 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-06-16 09:38:14 +00:00

8 lines
154 B
C

/* $Id$ */
#include "../defs.h"
#include "rmd160ossl.h"
void RMD160_Finish(RMD160_CTX *ctx, char *buf) {
RIPEMD160_Final((unsigned char *)buf, ctx);
}