/* +----------------------------------------------------------------------+ | PHP Version 7 | +----------------------------------------------------------------------+ | Copyright (c) 1997-2018 The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | http://www.php.net/license/3_01.txt | | If you did not receive a copy of the PHP license and are unable to | | obtain it through the world-wide-web, please send a note to | | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Author: Stefan Esser | +----------------------------------------------------------------------+ */ #ifndef SHA1_H #define SHA1_H #ifdef __cplusplus extern "C" { #endif #include #include /* SHA1 context. */ typedef struct { uint32_t state[5]; /* state (ABCD) */ uint32_t count[2]; /* number of bits, modulo 2^64 (lsb first) */ unsigned char buffer[64]; /* input buffer */ } SHA1_CTX; void SHA1Init(SHA1_CTX *); void SHA1Update(SHA1_CTX *, const unsigned char *, size_t); void SHA1Final(unsigned char[20], SHA1_CTX *); void make_sha1_digest(char *sha1str, unsigned char *digest); void sha1(void *data, size_t data_len, void *hash); #ifdef __cplusplus } #endif #endif