Ruby  1.9.3p537(2014-02-19revision0)
ext/digest/sha1/sha1ossl.c
Go to the documentation of this file.
00001 /* $Id$ */
00002 
00003 #include "defs.h"
00004 #include "sha1ossl.h"
00005 
00006 void
00007 SHA1_Finish(SHA1_CTX *ctx, char *buf)
00008 {
00009         SHA1_Final((unsigned char *)buf, ctx);
00010 }
00011