summaryrefslogtreecommitdiff
path: root/ext/digest/sha1/sha1ossl.c
blob: 452cf35084ce7cca9801d2779ba5878dcb281ddb (plain)
1
2
3
4
5
6
7
8
9
10
/* $Id$ */

#include "defs.h"
#include "sha1ossl.h"

void
SHA1_Finish(SHA1_CTX *ctx, char *buf)
{
	SHA1_Final((unsigned char *)buf, ctx);
}