Searched refs:PHP_MD2_CTX (Results 1 – 2 of 2) sorted by relevance
/PHP-7.2/ext/hash/ |
H A D | php_hash_md.h | 94 } PHP_MD2_CTX; typedef 96 PHP_HASH_API void PHP_MD2Init(PHP_MD2_CTX *context); 97 PHP_HASH_API void PHP_MD2Update(PHP_MD2_CTX *context, const unsigned char *, unsigned int); 98 PHP_HASH_API void PHP_MD2Final(unsigned char[16], PHP_MD2_CTX *);
|
H A D | hash_md.c | 53 sizeof(PHP_MD2_CTX), 632 PHP_HASH_API void PHP_MD2Init(PHP_MD2_CTX *context) in PHP_MD2Init() 634 memset(context, 0, sizeof(PHP_MD2_CTX)); in PHP_MD2Init() 637 static void MD2_Transform(PHP_MD2_CTX *context, const unsigned char *block) in MD2_Transform() 660 PHP_HASH_API void PHP_MD2Update(PHP_MD2_CTX *context, const unsigned char *buf, unsigned int len) in PHP_MD2Update() 691 PHP_HASH_API void PHP_MD2Final(unsigned char output[16], PHP_MD2_CTX *context) in PHP_MD2Final()
|
Completed in 9 milliseconds