Searched refs:algorithm (Results 1 – 25 of 77) sorted by relevance
1234
/php-src/ext/hash/tests/ |
H A D | hash_hkdf_error.phpt | 23 echo "\n-- Testing hash_hkdf() function with invalid hash algorithm --\n"; 28 echo "\n-- Testing hash_hkdf() function with non-cryptographic hash algorithm --\n"; 50 -- Testing hash_hkdf() function with invalid hash algorithm -- 51 [ValueError] hash_hkdf(): Argument #1 ($algo) must be a valid cryptographic hashing algorithm 53 -- Testing hash_hkdf() function with non-cryptographic hash algorithm -- 54 [ValueError] hash_hkdf(): Argument #1 ($algo) must be a valid cryptographic hashing algorithm 55 [ValueError] hash_hkdf(): Argument #1 ($algo) must be a valid cryptographic hashing algorithm 56 [ValueError] hash_hkdf(): Argument #1 ($algo) must be a valid cryptographic hashing algorithm 57 [ValueError] hash_hkdf(): Argument #1 ($algo) must be a valid cryptographic hashing algorithm 58 [ValueError] hash_hkdf(): Argument #1 ($algo) must be a valid cryptographic hashing algorithm [all …]
|
H A D | hash_hmac_error.phpt | 14 echo "\n-- Testing hash_hmac() function with invalid hash algorithm --\n"; 22 echo "\n-- Testing hash_hmac() function with non-cryptographic hash algorithm --\n"; 34 -- Testing hash_hmac() function with invalid hash algorithm -- 35 hash_hmac(): Argument #1 ($algo) must be a valid cryptographic hashing algorithm 37 -- Testing hash_hmac() function with non-cryptographic hash algorithm -- 38 hash_hmac(): Argument #1 ($algo) must be a valid cryptographic hashing algorithm
|
H A D | hash_hmac_file_error.phpt | 11 echo "\n-- Testing hash_hmac_file() function with invalid hash algorithm --\n"; 19 echo "\n-- Testing hash_hmac_file() function with non-cryptographic hash algorithm --\n"; 39 -- Testing hash_hmac_file() function with invalid hash algorithm -- 40 hash_hmac_file(): Argument #1 ($algo) must be a valid cryptographic hashing algorithm 42 -- Testing hash_hmac_file() function with non-cryptographic hash algorithm -- 43 hash_hmac_file(): Argument #1 ($algo) must be a valid cryptographic hashing algorithm
|
H A D | hash_pbkdf2_error.phpt | 14 echo "\n-- Testing hash_pbkdf2() function with invalid hash algorithm --\n"; 23 echo "\n-- Testing hash_pbkdf2() function with non-cryptographic hash algorithm --\n"; 58 -- Testing hash_pbkdf2() function with invalid hash algorithm -- 59 hash_pbkdf2(): Argument #1 ($algo) must be a valid cryptographic hashing algorithm 61 -- Testing hash_pbkdf2() function with non-cryptographic hash algorithm -- 62 hash_pbkdf2(): Argument #1 ($algo) must be a valid cryptographic hashing algorithm
|
H A D | hash_error.phpt | 8 echo "\n-- Testing hash() function with invalid hash algorithm --\n"; 19 -- Testing hash() function with invalid hash algorithm -- 20 hash(): Argument #1 ($algo) must be a valid hashing algorithm
|
H A D | hash_file_error.phpt | 15 echo "\n-- Testing hash_file() function with an unknown algorithm --\n"; 36 -- Testing hash_file() function with an unknown algorithm -- 37 hash_file(): Argument #1 ($algo) must be a valid hashing algorithm
|
H A D | hash_serialize_004.phpt | 17 …AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIjt9aTozO2k6MjtpOjQ7YTowOnt9fQ==", // algorithm is int 23 …AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACI7fWk6MztpOjI7aTo0O2E6MDp7fX0=" // bad algorithm 44 Unknown hash algorithm
|
H A D | sha512-224.phpt | 2 Hash: sha512/224 algorithm
|
H A D | sha512-256.phpt | 2 Hash: sha512/256 algorithm
|
H A D | whirlpool.phpt | 2 Hash: whirlpool algorithm
|
H A D | md5.phpt | 2 Hash: md5 algorithm
|
H A D | bug81714.phpt | 14 string(52) "HashContext for algorithm "md5" cannot be serialized"
|
H A D | hash_init_error.phpt | 44 hash_init(): Argument #1 ($algo) must be a valid hashing algorithm 47 hash_init(): Argument #1 ($algo) must be a cryptographic hashing algorithm if HMAC is requested
|
H A D | tiger.phpt | 2 Hash: tiger algorithm
|
H A D | sha384.phpt | 2 Hash: sha384 algorithm
|
H A D | adler32.phpt | 2 Hash: ADLER32 algorithm
|
/php-src/ext/openssl/tests/ |
H A D | openssl_decrypt_error.phpt | 30 Warning: openssl_decrypt(): Unknown cipher algorithm in %s on line %d 34 Warning: openssl_decrypt(): Unknown cipher algorithm in %s on line %d 37 Warning: openssl_decrypt(): Unknown cipher algorithm in %s on line %d 40 Warning: openssl_decrypt(): Unknown cipher algorithm in %s on line %d
|
H A D | openssl_encrypt_error.phpt | 22 Warning: openssl_encrypt(): Unknown cipher algorithm in %s on line %d 25 Warning: openssl_encrypt(): Key length cannot be set for the cipher algorithm in %s on line %d
|
H A D | bug70438.phpt | 30 openssl_seal(): Argument #6 ($iv) cannot be null for the chosen cipher algorithm 32 Warning: openssl_seal(): Unknown cipher algorithm in %s on line %d
|
H A D | openssl_cipher_iv_length_error.phpt | 19 Warning: openssl_cipher_iv_length(): Unknown cipher algorithm in %s on line %d
|
H A D | openssl_cipher_key_length_error.phpt | 19 Warning: openssl_cipher_key_length(): Unknown cipher algorithm in %s on line %d
|
/php-src/ext/openssl/ |
H A D | config0.m4 | 14 [whether to load legacy algorithm provider], 16 [OPENSSL: Load legacy algorithm provider in addition to default provider])], 48 [Define to 1 to load the OpenSSL legacy algorithm provider in addition to
|
H A D | config.w32 | 5 ARG_WITH("openssl-legacy-provider", "OPENSSL: Load legacy algorithm provider in addition to default… 16 …AC_DEFINE("LOAD_OPENSSL_LEGACY_PROVIDER", 1, "Define to 1 to load the OpenSSL legacy algorithm pro…
|
/php-src/ext/hash/ |
H A D | hash.c | 1186 struct mhash_bc_entry algorithm = mhash_to_hash[algo_number]; in mhash_init() local 1187 if (algorithm.mhash_name == NULL) { in mhash_init() 1191 len = slprintf(buf, 127, "MHASH_%s", algorithm.mhash_name); in mhash_init() 1201 zend_long algorithm; in PHP_FUNCTION() local 1211 if (algorithm >= 0 && algorithm < MHASH_NUM_ALGOS) { in PHP_FUNCTION() 1233 zend_long algorithm; in PHP_FUNCTION() local 1239 if (algorithm >= 0 && algorithm < MHASH_NUM_ALGOS) { in PHP_FUNCTION() 1262 zend_long algorithm; in PHP_FUNCTION() local 1269 if (algorithm >= 0 && algorithm < MHASH_NUM_ALGOS) { in PHP_FUNCTION() 1286 zend_long algorithm, l_bytes; in PHP_FUNCTION() local [all …]
|
/php-src/ext/standard/tests/crypt/ |
H A D | bcrypt_invalid_algorithm.phpt | 2 Test BCRYPT with invalid algorithm
|
Completed in 35 milliseconds
1234