Ruby  1.9.3p537(2014-02-19revision0)
ext/digest/md5/md5ossl.c
Go to the documentation of this file.
00001 /* $Id$ */
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