root/ext/digest/sha1/sha1ossl.c

/* [previous][next][first][last][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. SHA1_Finish

/* $Id: sha1ossl.c 11902 2007-02-27 10:08:39Z knu $ */

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

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

/* [previous][next][first][last][top][bottom][index][help] */