2 * SHA-1 implementation.
4 * Copyright (C) 2005 Paul Mackerras <paulus@samba.org>
18 int ppc_SHA1_Init(ppc_SHA_CTX *c);
19 int ppc_SHA1_Update(ppc_SHA_CTX *c, const void *p, unsigned long n);
20 int ppc_SHA1_Final(unsigned char *hash, ppc_SHA_CTX *c);
22 #define platform_SHA_CTX ppc_SHA_CTX
23 #define platform_SHA1_Init ppc_SHA1_Init
24 #define platform_SHA1_Update ppc_SHA1_Update
25 #define platform_SHA1_Final ppc_SHA1_Final