ruby/ext/digest/sha1/sha1ossl.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

10 lines
143 B
C

/* $Id$ */
#include "../defs.h"
#include "sha1ossl.h"
void
SHA1_Finish(SHA1_CTX *ctx, char *buf)
{
SHA1_Final((unsigned char *)buf, ctx);
}