Ruby 1.9.3p327(2012-11-10revision37606)
ext/digest/rmd160/rmd160ossl.c
Go to the documentation of this file.
00001 /* $Id: rmd160ossl.c 25189 2009-10-02 12:04:37Z akr $ */
00002 
00003 #include "defs.h"
00004 #include "rmd160ossl.h"
00005 
00006 void RMD160_Finish(RMD160_CTX *ctx, char *buf) {
00007         RIPEMD160_Final((unsigned char *)buf, ctx);
00008 }
00009