1/* $Id: sha1ossl.c 25189 2009-10-02 12:04:37Z akr $ */
2
3#include "defs.h"
4#include "sha1ossl.h"
5
6void
7SHA1_Finish(SHA1_CTX *ctx, char *buf)
8{
9	SHA1_Final((unsigned char *)buf, ctx);
10}
11