Searched refs:blocksize (Results 1 – 13 of 13) sorted by relevance
/PHP-5.4/ext/mcrypt/tests/ |
H A D | mcrypt_cbc_variation5.phpt | 127 Error: 2 - mcrypt_cbc(): The IV parameter must be as long as the blocksize, %s(%d) 131 Error: 2 - mcrypt_cbc(): The IV parameter must be as long as the blocksize, %s(%d) 135 Error: 2 - mcrypt_cbc(): The IV parameter must be as long as the blocksize, %s(%d) 139 Error: 2 - mcrypt_cbc(): The IV parameter must be as long as the blocksize, %s(%d) 143 Error: 2 - mcrypt_cbc(): The IV parameter must be as long as the blocksize, %s(%d) 147 Error: 2 - mcrypt_cbc(): The IV parameter must be as long as the blocksize, %s(%d) 151 Error: 2 - mcrypt_cbc(): The IV parameter must be as long as the blocksize, %s(%d) 155 Error: 2 - mcrypt_cbc(): The IV parameter must be as long as the blocksize, %s(%d) 159 Error: 2 - mcrypt_cbc(): The IV parameter must be as long as the blocksize, %s(%d) 179 Error: 2 - mcrypt_cbc(): The IV parameter must be as long as the blocksize, %s(%d) [all …]
|
H A D | mcrypt_decrypt_variation5.phpt | 127 Error: 2 - mcrypt_decrypt(): The IV parameter must be as long as the blocksize, %s(%d) 131 Error: 2 - mcrypt_decrypt(): The IV parameter must be as long as the blocksize, %s(%d) 135 Error: 2 - mcrypt_decrypt(): The IV parameter must be as long as the blocksize, %s(%d) 139 Error: 2 - mcrypt_decrypt(): The IV parameter must be as long as the blocksize, %s(%d) 143 Error: 2 - mcrypt_decrypt(): The IV parameter must be as long as the blocksize, %s(%d) 147 Error: 2 - mcrypt_decrypt(): The IV parameter must be as long as the blocksize, %s(%d) 151 Error: 2 - mcrypt_decrypt(): The IV parameter must be as long as the blocksize, %s(%d) 155 Error: 2 - mcrypt_decrypt(): The IV parameter must be as long as the blocksize, %s(%d) 159 Error: 2 - mcrypt_decrypt(): The IV parameter must be as long as the blocksize, %s(%d) 179 Error: 2 - mcrypt_decrypt(): The IV parameter must be as long as the blocksize, %s(%d) [all …]
|
H A D | mcrypt_encrypt_variation5.phpt | 128 Error: 2 - mcrypt_encrypt(): The IV parameter must be as long as the blocksize, %s(%d) 132 Error: 2 - mcrypt_encrypt(): The IV parameter must be as long as the blocksize, %s(%d) 136 Error: 2 - mcrypt_encrypt(): The IV parameter must be as long as the blocksize, %s(%d) 140 Error: 2 - mcrypt_encrypt(): The IV parameter must be as long as the blocksize, %s(%d) 144 Error: 2 - mcrypt_encrypt(): The IV parameter must be as long as the blocksize, %s(%d) 148 Error: 2 - mcrypt_encrypt(): The IV parameter must be as long as the blocksize, %s(%d) 152 Error: 2 - mcrypt_encrypt(): The IV parameter must be as long as the blocksize, %s(%d) 156 Error: 2 - mcrypt_encrypt(): The IV parameter must be as long as the blocksize, %s(%d) 160 Error: 2 - mcrypt_encrypt(): The IV parameter must be as long as the blocksize, %s(%d) 180 Error: 2 - mcrypt_encrypt(): The IV parameter must be as long as the blocksize, %s(%d) [all …]
|
H A D | mcrypt_rijndael128_128BitKey.phpt | 97 Warning: mcrypt_cbc(): The IV parameter must be as long as the blocksize in %s on line %d 100 Warning: mcrypt_decrypt(): The IV parameter must be as long as the blocksize in %s on line %d 105 Warning: mcrypt_cbc(): The IV parameter must be as long as the blocksize in %s on line %d 108 Warning: mcrypt_decrypt(): The IV parameter must be as long as the blocksize in %s on line %d 113 Warning: mcrypt_cbc(): The IV parameter must be as long as the blocksize in %s on line %d 116 Warning: mcrypt_decrypt(): The IV parameter must be as long as the blocksize in %s on line %d 125 Warning: mcrypt_cbc(): The IV parameter must be as long as the blocksize in %s on line %d 128 Warning: mcrypt_decrypt(): The IV parameter must be as long as the blocksize in %s on line %d
|
H A D | mcrypt_cbc_3des_encrypt.phpt | 75 Warning: mcrypt_cbc(): The IV parameter must be as long as the blocksize in %s on line %d 83 Warning: mcrypt_cbc(): The IV parameter must be as long as the blocksize in %s on line %d
|
H A D | mcrypt_decrypt_3des_cbc.phpt | 91 Warning: mcrypt_decrypt(): The IV parameter must be as long as the blocksize in %s on line %d 99 Warning: mcrypt_decrypt(): The IV parameter must be as long as the blocksize in %s on line %d
|
H A D | mcrypt_encrypt_3des_cbc.phpt | 84 Warning: mcrypt_encrypt(): The IV parameter must be as long as the blocksize in %s on line %d 92 Warning: mcrypt_encrypt(): The IV parameter must be as long as the blocksize in %s on line %d
|
H A D | mcrypt_cbc_3des_decrypt.phpt | 92 Warning: mcrypt_cbc(): The IV parameter must be as long as the blocksize in %s on line %d 100 Warning: mcrypt_cbc(): The IV parameter must be as long as the blocksize in %s on line %d
|
H A D | mcrypt_decrypt.phpt | 27 Warning: mcrypt_decrypt(): The IV parameter must be as long as the blocksize in %s on line %d
|
/PHP-5.4/ext/mcrypt/ |
H A D | mcrypt_filter.c | 30 int blocksize; member 60 if (data->blocksize) { in php_mcrypt_filter() 72 for(n=0; (n + data->blocksize) <= chunklen; n += data->blocksize) { in php_mcrypt_filter() 75 mcrypt_generic(data->module, outchunk + n, data->blocksize); in php_mcrypt_filter() 77 mdecrypt_generic(data->module, outchunk + n, data->blocksize); in php_mcrypt_filter() 104 if ((flags & PSFS_FLAG_FLUSH_CLOSE) && data->blocksize && data->block_used) { in php_mcrypt_filter() 109 mcrypt_generic(data->module, data->block_buffer, data->blocksize); in php_mcrypt_filter() 111 mdecrypt_generic(data->module, data->block_buffer, data->blocksize); in php_mcrypt_filter() 259 data->blocksize = mcrypt_enc_get_block_size(mcrypt_module); in php_mcrypt_filter_create() 260 data->block_buffer = pemalloc(data->blocksize, persistent); in php_mcrypt_filter_create() [all …]
|
/PHP-5.4/ext/bz2/ |
H A D | bz2.c | 79 ZEND_ARG_INFO(0, blocksize)
|
/PHP-5.4/ext/gd/ |
H A D | gd.c | 4958 long tmp, blocksize; in php_image_filter_pixelate() local 4961 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rll|b", &IM, &tmp, &blocksize, &mode) == FAI… in php_image_filter_pixelate() 4971 if (gdImagePixelate(im, (int) blocksize, (const unsigned int) mode)) { in php_image_filter_pixelate()
|
/PHP-5.4/ext/fileinfo/tests/ |
H A D | magic | 1519 >>2 beshort x \b, blocksize %d 7555 >>32 beshort x blocksize: %d bytes, 7558 >>>51 belong x blocksize: %d bytes, 7560 >>>12 belong x blocksize: %d bytes, 7578 >>32 leshort x blocksize: %d bytes, 7581 >>>51 lelong x blocksize: %d bytes, 7583 >>>12 lelong x blocksize: %d bytes, 7679 >>0x10024 belong x (blocksize %d, 7682 >>0x10024 belong x (blocksize %d, 7739 >>&8 lelong x \b, blocksize %d
|
Completed in 77 milliseconds