php-internal-docs 8.4.8
Unofficial docs for php/php-src
|
#include "ext/standard/md5.h"
Go to the source code of this file.
Data Structures | |
struct | PHP_MD4_CTX |
struct | PHP_MD2_CTX |
Macros | |
#define | PHP_MD4_SPEC "l4l2b64." |
#define | PHP_MD4Init(ctx) |
#define | PHP_MD2_SPEC "b48b16b16b." |
#define | PHP_MD2Init(ctx) |
Functions | |
PHP_HASH_API void | PHP_MD4InitArgs (PHP_MD4_CTX *, ZEND_ATTRIBUTE_UNUSED HashTable *) |
PHP_HASH_API void | PHP_MD4Update (PHP_MD4_CTX *context, const unsigned char *, size_t) |
PHP_HASH_API void | PHP_MD4Final (unsigned char[16], PHP_MD4_CTX *) |
PHP_HASH_API void | PHP_MD2InitArgs (PHP_MD2_CTX *context, ZEND_ATTRIBUTE_UNUSED HashTable *args) |
PHP_HASH_API void | PHP_MD2Update (PHP_MD2_CTX *context, const unsigned char *, size_t) |
PHP_HASH_API void | PHP_MD2Final (unsigned char[16], PHP_MD2_CTX *) |
#define PHP_MD2_SPEC "b48b16b16b." |
Definition at line 43 of file php_hash_md.h.
#define PHP_MD2Init | ( | ctx | ) |
Definition at line 45 of file php_hash_md.h.
#define PHP_MD4_SPEC "l4l2b64." |
Definition at line 29 of file php_hash_md.h.
#define PHP_MD4Init | ( | ctx | ) |
Definition at line 31 of file php_hash_md.h.
PHP_HASH_API void PHP_MD2Final | ( | unsigned char | output[16], |
PHP_MD2_CTX * | context ) |
PHP_HASH_API void PHP_MD2InitArgs | ( | PHP_MD2_CTX * | context, |
ZEND_ATTRIBUTE_UNUSED HashTable * | args ) |
PHP_HASH_API void PHP_MD2Update | ( | PHP_MD2_CTX * | context, |
const unsigned char * | buf, | ||
size_t | len ) |
PHP_HASH_API void PHP_MD4Final | ( | unsigned char | digest[16], |
PHP_MD4_CTX * | context ) |
PHP_HASH_API void PHP_MD4InitArgs | ( | PHP_MD4_CTX * | context, |
ZEND_ATTRIBUTE_UNUSED HashTable * | args ) |
PHP_HASH_API void PHP_MD4Update | ( | PHP_MD4_CTX * | context, |
const unsigned char * | input, | ||
size_t | inputLen ) |