123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef PHP_HASH_CRC32_H
- #define PHP_HASH_CRC32_H
- #include "ext/standard/basic_functions.h"
- typedef struct {
- php_hash_uint32 state;
- } PHP_CRC32_CTX;
- PHP_HASH_API void PHP_CRC32Init(PHP_CRC32_CTX *context);
- PHP_HASH_API void PHP_CRC32Update(PHP_CRC32_CTX *context, const unsigned char *input, size_t len);
- PHP_HASH_API void PHP_CRC32BUpdate(PHP_CRC32_CTX *context, const unsigned char *input, size_t len);
- PHP_HASH_API void PHP_CRC32Final(unsigned char digest[4], PHP_CRC32_CTX *context);
- PHP_HASH_API int PHP_CRC32Copy(const php_hash_ops *ops, PHP_CRC32_CTX *orig_context, PHP_CRC32_CTX *copy_context);
- #endif
|