sha1ossl.c   [plain text]


/* $Id: sha1ossl.c 25189 2009-10-02 12:04:37Z akr $ */

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

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