Ruby 1.9.3p327(2012-11-10revision37606)
ext/digest/md5/md5ossl.c
Go to the documentation of this file.
00001 /* $Id: md5ossl.c 25189 2009-10-02 12:04:37Z akr $ */
00002 
00003 #include "md5ossl.h"
00004 
00005 void
00006 MD5_Finish(MD5_CTX *pctx, unsigned char *digest)
00007 {
00008     MD5_Final(digest, pctx);
00009 }
00010