Lines Matching refs:php_hash_register_algo

97 PHP_HASH_API void php_hash_register_algo(const char *algo, const php_hash_ops *ops) /* {{{ */  in php_hash_register_algo()  function
897 #define PHP_HASH_HAVAL_REGISTER(p,b) php_hash_register_algo("haval" #b "," #p , &php_hash_##p##hava…
1177 php_hash_register_algo("md2", &php_hash_md2_ops); in PHP_MINIT_FUNCTION()
1178 php_hash_register_algo("md4", &php_hash_md4_ops); in PHP_MINIT_FUNCTION()
1179 php_hash_register_algo("md5", &php_hash_md5_ops); in PHP_MINIT_FUNCTION()
1180 php_hash_register_algo("sha1", &php_hash_sha1_ops); in PHP_MINIT_FUNCTION()
1181 php_hash_register_algo("sha224", &php_hash_sha224_ops); in PHP_MINIT_FUNCTION()
1182 php_hash_register_algo("sha256", &php_hash_sha256_ops); in PHP_MINIT_FUNCTION()
1183 php_hash_register_algo("sha384", &php_hash_sha384_ops); in PHP_MINIT_FUNCTION()
1184 php_hash_register_algo("sha512/224", &php_hash_sha512_224_ops); in PHP_MINIT_FUNCTION()
1185 php_hash_register_algo("sha512/256", &php_hash_sha512_256_ops); in PHP_MINIT_FUNCTION()
1186 php_hash_register_algo("sha512", &php_hash_sha512_ops); in PHP_MINIT_FUNCTION()
1187 php_hash_register_algo("sha3-224", &php_hash_sha3_224_ops); in PHP_MINIT_FUNCTION()
1188 php_hash_register_algo("sha3-256", &php_hash_sha3_256_ops); in PHP_MINIT_FUNCTION()
1189 php_hash_register_algo("sha3-384", &php_hash_sha3_384_ops); in PHP_MINIT_FUNCTION()
1190 php_hash_register_algo("sha3-512", &php_hash_sha3_512_ops); in PHP_MINIT_FUNCTION()
1191 php_hash_register_algo("ripemd128", &php_hash_ripemd128_ops); in PHP_MINIT_FUNCTION()
1192 php_hash_register_algo("ripemd160", &php_hash_ripemd160_ops); in PHP_MINIT_FUNCTION()
1193 php_hash_register_algo("ripemd256", &php_hash_ripemd256_ops); in PHP_MINIT_FUNCTION()
1194 php_hash_register_algo("ripemd320", &php_hash_ripemd320_ops); in PHP_MINIT_FUNCTION()
1195 php_hash_register_algo("whirlpool", &php_hash_whirlpool_ops); in PHP_MINIT_FUNCTION()
1196 php_hash_register_algo("tiger128,3", &php_hash_3tiger128_ops); in PHP_MINIT_FUNCTION()
1197 php_hash_register_algo("tiger160,3", &php_hash_3tiger160_ops); in PHP_MINIT_FUNCTION()
1198 php_hash_register_algo("tiger192,3", &php_hash_3tiger192_ops); in PHP_MINIT_FUNCTION()
1199 php_hash_register_algo("tiger128,4", &php_hash_4tiger128_ops); in PHP_MINIT_FUNCTION()
1200 php_hash_register_algo("tiger160,4", &php_hash_4tiger160_ops); in PHP_MINIT_FUNCTION()
1201 php_hash_register_algo("tiger192,4", &php_hash_4tiger192_ops); in PHP_MINIT_FUNCTION()
1202 php_hash_register_algo("snefru", &php_hash_snefru_ops); in PHP_MINIT_FUNCTION()
1203 php_hash_register_algo("snefru256", &php_hash_snefru_ops); in PHP_MINIT_FUNCTION()
1204 php_hash_register_algo("gost", &php_hash_gost_ops); in PHP_MINIT_FUNCTION()
1205 php_hash_register_algo("gost-crypto", &php_hash_gost_crypto_ops); in PHP_MINIT_FUNCTION()
1206 php_hash_register_algo("adler32", &php_hash_adler32_ops); in PHP_MINIT_FUNCTION()
1207 php_hash_register_algo("crc32", &php_hash_crc32_ops); in PHP_MINIT_FUNCTION()
1208 php_hash_register_algo("crc32b", &php_hash_crc32b_ops); in PHP_MINIT_FUNCTION()
1209 php_hash_register_algo("fnv132", &php_hash_fnv132_ops); in PHP_MINIT_FUNCTION()
1210 php_hash_register_algo("fnv1a32", &php_hash_fnv1a32_ops); in PHP_MINIT_FUNCTION()
1211 php_hash_register_algo("fnv164", &php_hash_fnv164_ops); in PHP_MINIT_FUNCTION()
1212 php_hash_register_algo("fnv1a64", &php_hash_fnv1a64_ops); in PHP_MINIT_FUNCTION()
1213 php_hash_register_algo("joaat", &php_hash_joaat_ops); in PHP_MINIT_FUNCTION()