XWare Поиск по информационным ресурсам МГУ English Russian
       
       Точная форма слов   О проекте   Сайты   Помощь
Поиск по:old.master.cmc.msu.ru   - Поискать по всем серверам
На этой странице приведены все страницы сервера old.master.cmc.msu.ru ,которые мы индексируем. Показаны документы 1941 - 1960 из 3519.

В начало ] Пред. | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | След.В конец ]

Упорядочить по: URL  |  дате изменения
1941. mcrypt_enc_get_key_size
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.2) mcrypt_enc_get_key_size -- Returns the maximum supported keysize of the opened mode . int mcrypt_enc_get_key_size ( resource td) . This function returns the maximum supported key size of the algorithm specified by the encryption descriptor td in bytes. Prev . Home . Next . mcrypt_enc_get_block_size . Up . mcrypt_enc_get_supported_key_sizes
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-enc-get-key-size.html -- 3.5 Кб -- 03.02.2002
Похожие документы

1942. mcrypt_enc_get_supported_key_sizes
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.2) mcrypt_enc_get_supported_key_sizes -- Returns an array with the supported keysizes of the opened algorithm . array mcrypt_enc_get_supported_key_sizes ( resource td) . Returns an array with the key sizes supported by the algorithm specified by the encryption descriptor. If it returns an empty array then all key sizes between 1 and mcrypt_enc_get_key_size() are supported by the algorithm. Prev . Home . Next . mcrypt_enc_get_key_size . Up . mcrypt_enc_get_iv_size
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-enc-get-supported-key-sizes.html -- 3.7 Кб -- 03.02.2002
Похожие документы

1943. mcrypt_enc_get_block_size
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.2) mcrypt_enc_get_block_size -- Returns the blocksize of the opened algorithm . int mcrypt_enc_get_block_size ( resource td) . This function returns the block size of the algorithm specified by the encryption descriptor td in bytes. Prev . Home . Next . mcrypt_enc_is_block_mode . Up . mcrypt_enc_get_key_size
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-enc-get-block-size.html -- 3.5 Кб -- 03.02.2002
Похожие документы

1944. mcrypt_enc_is_block_mode
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.2) mcrypt_enc_is_block_mode -- Checks whether the opened mode outputs blocks . int mcrypt_enc_is_block_mode ( resource td) . This function returns 1 if the mode outputs blocks of bytes or 0 if it outputs bytes. (eg. 1 for cbc and ecb, and 0 for cfb and stream). Prev . Home . Next . mcrypt_enc_is_block_algorithm . Up . mcrypt_enc_get_block_size
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-enc-is-block-mode.html -- 3.5 Кб -- 03.02.2002
Похожие документы

1945. mcrypt_enc_is_block_algorithm_mode
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.2) mcrypt_enc_is_block_algorithm_mode -- Checks whether the encryption of the opened mode works on blocks . int mcrypt_enc_is_block_algorithm_mode ( resource td) . This function returns 1 if the mode is for use with block algorithms, otherwise it returns 0. (eg. 0 for stream, and 1 for cbc, cfb, ofb). Prev . Home . Next . mcrypt_enc_self_test . Up . mcrypt_enc_is_block_algorithm
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-enc-is-block-algorithm-mode.html -- 3.6 Кб -- 03.02.2002
Похожие документы

1946. mcrypt_enc_is_block_algorithm
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.2) mcrypt_enc_is_block_algorithm -- Checks whether the algorithm of the opened mode is a block algorithm . int mcrypt_enc_is_block_algorithm ( resource td) . This function returns 1 if the algorithm is a block algorithm, or 0 if it is a stream algorithm. Prev . Home . Next . mcrypt_enc_is_block_algorithm_mode . Up . mcrypt_enc_is_block_mode
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-enc-is-block-algorithm.html -- 3.5 Кб -- 03.02.2002
Похожие документы

1947. mcrypt_enc_self_test
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.2) mcrypt_enc_self_test -- This function runs a self test on the opened module . int mcrypt_enc_self_test ( resource td) . This function runs the self test on the algorithm specified by the descriptor td. If the self test succeeds it returns zero. In case of an error, it returns 1. Prev . Home . Next . mcrypt_generic_end . Up . mcrypt_enc_is_block_algorithm_mode
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-enc-self-test.html -- 3.5 Кб -- 03.02.2002
Похожие документы

1948. mcrypt_generic_end
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.2) mcrypt_generic_end -- This function terminates encryption . bool mcrypt_generic_end ( resource td) . This function terminates encryption specified by the encryption descriptor (td). Actually it clears all buffers, and closes all the modules used. Returns FALSE on error, or TRUE on succes. Prev . Home . Next . mdecrypt_generic . Up . mcrypt_enc_self_test
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-generic-end.html -- 3.5 Кб -- 03.02.2002
Похожие документы

1949. mdecrypt_generic
PHP Manual . ... PHP 4 >= 4.0.2) mdecrypt_generic -- This function decrypts data . string mdecrypt_generic ( resource td, string data) . ... php $iv_size = mcrypt_enc_get_iv_size ($td)); $iv = @mcrypt_create_iv ($iv_size, MCRYPT_RAND); if (@mcrypt_generic_init ($td, $key, $iv) != -1) { $c_t = mcrypt_generic ($td, $plain_text); @mcrypt_generic_init ($td, $key, $iv); $p_t = mdecrypt_generic ($td, $c_t); } if (strncmp ($p_t, $plain_text, strlen($plain_text)) == 0) echo "ok"; else echo "error"; ?> ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mdecrypt-generic.html -- 4.3 Кб -- 03.02.2002
Похожие документы

1950. mcrypt_generic_init
PHP Manual . Prev . Next . PHP 4 >= 4.0.2) mcrypt_generic_init -- This function initializes all buffers needed for encryption . int mcrypt_generic_init ( resource td, string key, string iv) . The maximum length of the key should be the one obtained by calling mcrypt_enc_get_key_size() and every value smaller than this is legal. ... The same IV must be used for encryption/decryption. ... You need to call this function before every mcrypt_generic() or mdecrypt_generic() . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-generic-init.html -- 4.3 Кб -- 03.02.2002
Похожие документы

1951. mcrypt_generic
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.2) mcrypt_generic -- This function encrypts data . string mcrypt_generic ( resource td, string data) . This function encrypts data. The data is padded with " \0 " to make sure the length of the data is n * blocksize. This function returns the encrypted data. Note that the length of the returned string can in fact be longer then the input, due to the padding of the data. Prev . Home . Next . mcrypt_generic_init . Up . mdecrypt_generic
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-generic.html -- 3.5 Кб -- 03.02.2002
Похожие документы

1952. mcrypt_generic_deinit
. PHP Manual . Prev . Next . (PHP 4 CVS only) mcrypt_generic_deinit -- This function terminates encrypt specified by the descriptor td . bool mcrypt_generic_deinit ( resource td) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . mcrypt_module_close . Up . mcrypt_generic_init
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-generic-deinit.html -- 3.6 Кб -- 03.02.2002
Похожие документы

1953. mcrypt_module_close
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.2) mcrypt_module_close -- Free the descriptor td . bool mcrypt_module_close ( resource td) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . mcrypt_module_open . Up . mcrypt_generic_deinit
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-module-close.html -- 3.5 Кб -- 03.02.2002
Похожие документы

1954. mcrypt_decrypt
... string mcrypt_decrypt ( string cipher, string key, string data, string mode [, string iv]) . ... Cipher is one of the MCRYPT_ciphername constants of the name of the algorithm as string. ... Data is the data that will be decrypted with the given cipher and mode. ... Mode is one of the MCRYPT_MODE_modename constants of one of "ecb", "cbc", "cfb", "ofb", "nofb" or "stream". The IV parameter is used for the initialisation in CBC, CFB, OFB modes, and in some algorithms in STREAM mode. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-decrypt.html -- 4.5 Кб -- 03.02.2002
Похожие документы

1955. mcrypt_module_open
PHP Manual . ... PHP 4 >= 4.0.2) mcrypt_module_open -- This function opens the module of the algorithm and the mode to be used . resource mcrypt_module_open ( string algorithm, string algorithm_directory, string mode, string mode_directory) . This function opens the module of the algorithm and the mode to be used. ... When these are not set, the default directory are used that are compiled in into libmcrypt (usally /usr/local/lib/libmcrypt). Example 1. mcrypt_module_open() Example . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-module-open.html -- 5.2 Кб -- 03.02.2002
Похожие документы

1956. mcrypt_encrypt
... PHP 4 >= 4.0.2) mcrypt_encrypt -- Encrypts plaintext with given parameters . string mcrypt_encrypt ( string cipher, string key, string data, string mode [, string iv]) . mcrypt_encrypt() encrypts the data and returns the encrypted data. Cipher is one of the MCRYPT_ciphername constants of the name of the algorithm as string. ... Data is the data that will be encrypted with the given cipher and mode. ... Example 1. mcrypt_encrypt() Example . ... The above example will print out: . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-encrypt.html -- 5.7 Кб -- 03.02.2002
Похожие документы

1957. mcrypt_get_iv_size
... PHP 4 >= 4.0.2) mcrypt_get_iv_size -- Returns the size of the IV belonging to a specific cipher/mode combination . int mcrypt_get_iv_size ( string cipher, string mode)int mcrypt_get_iv_size ( resource td) . ... If the IV is ignored in the specified cipher/mode combination zero is returned. Cipher is one of the MCRYPT_ciphername constants of the name of the algorithm as string. Mode is one of the MCRYPT_MODE_modename constants of one of "ecb", "cbc", "cfb", "ofb", "nofb" or "stream". ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-get-iv-size.html -- 4.2 Кб -- 03.02.2002
Похожие документы

1958. mcrypt_list_algorithms
PHP Manual . ... PHP 4 >= 4.0.2) mcrypt_list_algorithms -- Get an array of all supported ciphers . array mcrypt_list_algorithms ( [string lib_dir]) . mcrypt_list_algorithms() is used to get an array of all supported algorithms in the . ... php $algorithms = mcrypt_list_algorithms ("/usr/local/lib/libmcrypt"); foreach ($algorithms as $cipher) { echo $cipher."/n"; } ?> The above example will produce a list with all supported algorithms in the "/usr/local/lib/libmcrypt" directory. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-list-algorithms.html -- 4.3 Кб -- 03.02.2002
Похожие документы

1959. mcrypt_list_modes
PHP Manual . ... PHP 4 >= 4.0.2) mcrypt_list_modes -- Get an array of all supported modes . array mcrypt_list_modes ( [string lib_dir]) . mcrypt_list_modes() is used to get an array of all supported modes in the lib_dir . mcrypt_list_modes() takes as optional parameter a directory which specifies the directory where all modes are located. ... Example 1. mcrypt_list_modes() Example . ... The above example will produce a list with all supported algorithms in the default mode directory. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-list-modes.html -- 4.4 Кб -- 03.02.2002
Похожие документы

1960. mcrypt_ecb
... 3.0.8 - 3.0.18 only, PHP 4 >= 4.0.0) mcrypt_ecb -- Encrypt/decrypt data in ECB mode . string mcrypt_ecb ( int cipher, string key, string data, int mode)string mcrypt_ecb ( string cipher, string key, string data, int mode [, string iv]) . The first prototype is when linked against libmcrypt 2.2.x, the second when linked against libmcrypt 2.4.x. mcrypt_ecb() encrypts or decrypts (depending on mode ) the data with cipher and key in ECB cipher mode and returns the resulting string. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-ecb.html -- 4.5 Кб -- 03.02.2002
Похожие документы

В начало ] Пред. | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | След.В конец ]

Rambler's Top100 RFBR Яндекс цитирования