Ruby
2.0.0p247(2013-06-27revision41674)
|
00001 /* $Id: sha1ossl.c 25189 2009-10-02 12:04:37Z akr $ */ 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