md5.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2016 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Author: Alexander Peslyak (Solar Designer) <solar at openwall.com> |
  16. | Rasmus Lerdorf <rasmus@lerdorf.on.ca> |
  17. +----------------------------------------------------------------------+
  18. */
  19. /* $Id$ */
  20. #ifndef MD5_H
  21. #define MD5_H
  22. PHPAPI void make_digest(char *md5str, const unsigned char *digest);
  23. PHPAPI void make_digest_ex(char *md5str, const unsigned char *digest, int len);
  24. PHP_NAMED_FUNCTION(php_if_md5);
  25. PHP_NAMED_FUNCTION(php_if_md5_file);
  26. #include "ext/standard/basic_functions.h"
  27. /*
  28. * This is an OpenSSL-compatible implementation of the RSA Data Security,
  29. * Inc. MD5 Message-Digest Algorithm (RFC 1321).
  30. *
  31. * Written by Solar Designer <solar at openwall.com> in 2001, and placed
  32. * in the public domain. There's absolutely no warranty.
  33. *
  34. * See md5.c for more information.
  35. */
  36. /* MD5 context. */
  37. typedef struct {
  38. php_uint32 lo, hi;
  39. php_uint32 a, b, c, d;
  40. unsigned char buffer[64];
  41. php_uint32 block[16];
  42. } PHP_MD5_CTX;
  43. PHPAPI void PHP_MD5Init(PHP_MD5_CTX *ctx);
  44. PHPAPI void PHP_MD5Update(PHP_MD5_CTX *ctx, const void *data, size_t size);
  45. PHPAPI void PHP_MD5Final(unsigned char *result, PHP_MD5_CTX *ctx);
  46. #endif