summaryrefslogtreecommitdiff
path: root/ext/digest/sha1/sha1ossl.c
blob: adf5cf267cceb607699ceb8facfcdc071001fc08 (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(buf, ctx);
}