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

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

Упорядочить по: URL  |  дате изменения
1921. mssql_fetch_array
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) mssql_fetch_array -- Fetch row as array . int mssql_fetch_array ( int result) . Returns: An array that corresponds to the fetched row, or FALSE if there are no more rows. mssql_fetch_array() is an extended version of mssql_fetch_row() . In addition to storing the data in the numeric indices of the result array, it also stores the data in associative indices, using the field names as keys. ... mssql_data_seek . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mssql-fetch-array.html -- 4.1 Кб -- 03.02.2002
Похожие документы

1922. mssql_close
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) mssql_close -- Close MS SQL Server connection . int mssql_close ( [int link_identifier]) . Returns: TRUE on success, FALSE on error. mssql_close() closes the link to a MS SQL Server database that's associated with the specified link identifier. If the link identifier isn't specified, the last opened link is assumed. ... Microsoft SQL Server functions . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mssql-close.html -- 4.1 Кб -- 03.02.2002
Похожие документы

1923. mssql_connect
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) mssql_connect -- Open MS SQL server connection . int mssql_connect ( [string servername [, string username [, string password]]]) . Returns: A positive MS SQL link identifier on success, or FALSE on error. mssql_connect() establishes a connection to a MS SQL server. ... The link to the server will be closed as soon as the execution of the script ends, unless it's closed earlier by explicitly calling mssql_close() . ... mssql_close . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mssql-connect.html -- 4.2 Кб -- 03.02.2002
Похожие документы

1924. mhash_keygen_s2k
... PHP 4 >= 4.0.4) mhash_keygen_s2k -- Generates a key . string mhash_keygen_s2k ( int hash, string password, string salt, int bytes) . mhash_keygen_s2k() generates a key that is bytes long, from a user given password. ... That algorithm will use the specified hash algorithm to create the key. ... Keep in mind that user supplied passwords are not really suitable to be used as keys in cryptographic algorithms, since users normally choose keys they can write on keyboard. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mhash-keygen-s2k.html -- 4.2 Кб -- 03.02.2002
Похожие документы

1925. Mhash Functions
PHP Manual . ... These functions are intended to work with mhash . This is an interface to the mhash library. mhash supports a wide variety of hash algorithms such as MD5, SHA1, GOST, and many others. ... Compute the MD5 digest and hmac and print it out as hex . php $input = "what do ya want for nothing?"; $hash = mhash (MHASH_MD5, $input); print "The hash is ".bin2hex ($hash)."<br />\n"; $hash = mhash (MHASH_MD5, $input, "Jefe"); print "The hmac is ".bin2hex ($hash)."<br />\n"; ?> ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/ref.mhash.html -- 6.3 Кб -- 03.02.2002
Похожие документы

1926. mhash_count
. PHP Manual . Prev . Next . (3.0.9 - 3.0.18 only, PHP 4 >= 4.0.0) mhash_count -- Get the highest available hash id . int mhash_count ( (void);) . mhash_count() returns the highest available hash id. Hashes are numbered from 0 to this hash id. Example 1. Traversing all hashes . <?php $nr = mhash_count(); for ($i = 0; $i <= $nr; $i++) { echo sprintf ("The blocksize of %s is %d\n", mhash_get_hash_name ($i), mhash_get_block_size ($i)); } ?> . Prev . Home . Next . mhash_get_block_size . Up . mhash
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mhash-count.html -- 3.8 Кб -- 03.02.2002
Похожие документы

1927. mhash
... Next . 3.0.9 - 3.0.18 only, PHP 4 >= 4.0.0) mhash -- Compute hash . string mhash ( int hash, string data, string [ key ]) . mhash() applies a hash function specified by hash to the data and returns the resulting hash (also called digest). If the key is specified it will return the resulting HMAC. HMAC is keyed hashing for message authentication, or simply a message digest that depends on the specified key. Not all algorithms supported in mhash can be used in HMAC mode. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mhash.html -- 3.7 Кб -- 03.02.2002
Похожие документы

1928. mhash_get_block_size
. PHP Manual . Prev . Next . (3.0.9 - 3.0.18 only, PHP 4 >= 4.0.0) mhash_get_block_size -- Get the block size of the specified hash . int mhash_get_block_size ( int hash) . mhash_get_block_size() is used to get the size of a block of the specified hash . mhash_get_block_size() takes one argument, the hash and returns the size in bytes or FALSE , if the hash does not exist. Prev . Home . Next . mhash_get_hash_name . Up . mhash_count
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mhash-get-block-size.html -- 3.7 Кб -- 03.02.2002
Похожие документы

1929. mhash_get_hash_name
PHP Manual . Prev . Next . 3.0.9 - 3.0.18 only, PHP 4 >= 4.0.0) mhash_get_hash_name -- Get the name of the specified hash . string mhash_get_hash_name ( int hash) . mhash_get_hash_name() is used to get the name of the specified hash. mhash_get_hash_name() takes the hash id as an argument and returns the name of the hash or FALSE , if the hash does not exist. Example 1. mhash_get_hash_name() Example . php $hash = MHASH_MD5; print mhash_get_hash_name ($hash); ?> ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mhash-get-hash-name.html -- 4.2 Кб -- 03.02.2002
Похожие документы

1930. mcrypt_module_get_supported_key_sizes
PHP Manual . ... Next . PHP 4 >= 4.0.2) mcrypt_module_get_supported_key_sizes -- Returns an array with the supported keysizes of the opened algorithm . array mcrypt_module_get_supported_key_sizes ( string algorithm [, string lib_dir]) . Returns an array with the key sizes supported by the specified algorithm. If it returns an empty array then all key sizes between 1 and mcrypt_module_get_algo_key_size() are supported by the algorithm. ... mcrypt_module_get_algo_key_size . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-module-get-supported-key-sizes.html -- 3.8 Кб -- 03.02.2002
Похожие документы

1931. Mcrypt Encryption Functions
... These functions work using mcrypt . This is an interface to the mcrypt library, which supports a wide variety of block algorithms such as DES, TripleDES, Blowfish (default), 3-WAY, SAFER-SK64, SAFER-SK128, TWOFISH, TEA, RC2 and GOST in CBC, OFB, CFB and ECB cipher modes. ... If you linked against libmcrypt 2.4.x, the following additional block algorithms are supported: CAST, LOKI97, RIJNDAEL, SAFERPLUS, SERPENT and the following stream ciphers: ENIGMA (crypt), PANAMA, RC4 and WAKE. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/ref.mcrypt.html -- 17.9 Кб -- 03.02.2002
Похожие документы

1932. mcrypt_module_get_algo_block_size
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.2) mcrypt_module_get_algo_block_size -- Returns the blocksize of the specified algorithm . int mcrypt_module_get_algo_block_size ( string algorithm [, string lib_dir]) . This function returns the block size of the algorithm specified in bytes. The optional lib_dir parameter can contain the location where the mode module is on the system. Prev . Home . Next . mcrypt_module_is_block_mode . Up . mcrypt_module_get_algo_key_size
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-module-get-algo-block-size.html -- 3.7 Кб -- 03.02.2002
Похожие документы

1933. mcrypt_module_get_algo_key_size
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.2) mcrypt_module_get_algo_key_size -- Returns the maximum supported keysize of the opened mode . int mcrypt_module_get_algo_key_size ( string algorithm [, string lib_dir]) . This function returns the maximum supported key size of the algorithm specified in bytes. The optional lib_dir parameter can contain the location where the mode module is on the system. Prev . Home . Next . mcrypt_module_get_algo_block_size . Up . mcrypt_module_get_supported_key_sizes
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-module-get-algo-key-size.html -- 3.8 Кб -- 03.02.2002
Похожие документы

1934. mcrypt_module_is_block_algorithm_mode
PHP Manual . Prev . Next . PHP 4 >= 4.0.2) mcrypt_module_is_block_algorithm_mode -- This function returns if the the specified module is a block algorithm or not . bool mcrypt_module_is_block_algorithm_mode ( string mode [, string lib_dir]) . This function returns TRUE if the mode is for use with block algorithms, otherwise it returns 0. (eg. 0 for stream, and 1 for cbc, cfb, ofb). The optional lib_dir parameter can contain the location where the mode module is on the system. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-module-is-block-algorithm-mode.html -- 3.8 Кб -- 03.02.2002
Похожие документы

1935. mcrypt_module_is_block_algorithm
PHP Manual . Prev . Next . PHP 4 >= 4.0.2) mcrypt_module_is_block_algorithm -- This function checks whether the specified algorithm is a block algorithm . bool mcrypt_module_is_block_algorithm ( string algorithm [, string lib_dir]) . This function returns TRUE if the specified algorithm is a block algorithm, or FALSE is it is a stream algorithm. The optional lib_dir parameter can contain the location where the algorithm module is on the system. ... mcrypt_module_is_block_mode ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-module-is-block-algorithm.html -- 3.9 Кб -- 03.02.2002
Похожие документы

1936. mcrypt_module_is_block_mode
PHP Manual . Prev . Next . PHP 4 >= 4.0.2) mcrypt_module_is_block_mode -- This function returns if the the specified mode outputs blocks or not . bool mcrypt_module_is_block_mode ( string mode [, string lib_dir]) . This function returns TRUE if the mode outputs blocks of bytes or FALSE if it outputs just bytes. (eg. 1 for cbc and ecb, and 0 for cfb and stream). The optional lib_dir parameter can contain the location where the mode module is on the system. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-module-is-block-mode.html -- 3.9 Кб -- 03.02.2002
Похожие документы

1937. mcrypt_enc_get_modes_name
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.2) mcrypt_enc_get_modes_name -- Returns the name of the opened mode . string mcrypt_enc_get_modes_name ( resource td) . This function returns the name of the mode. Prev . Home . Next . mcrypt_enc_get_algorithms_name . Up . mcrypt_module_self_test
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-enc-get-modes-name.html -- 3.4 Кб -- 03.02.2002
Похожие документы

1938. mcrypt_module_self_test
PHP Manual . Prev . Next . PHP 4 >= 4.0.2) mcrypt_module_self_test -- This function runs a self test on the specified module . bool mcrypt_module_self_test ( string algorithm [, string lib_dir]) . This function runs the self test on the algorithm specified. The optional lib_dir parameter can contain the location of where the algorithm module is on the system. The function returns TRUE if the self test succeeds, or FALSE when if fails. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-module-self-test.html -- 3.8 Кб -- 03.02.2002
Похожие документы

1939. mcrypt_enc_get_algorithms_name
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.2) mcrypt_enc_get_algorithms_name -- Returns the name of the opened algorithm . string mcrypt_enc_get_algorithms_name ( resource td) . This function returns the name of the algorithm. Prev . Home . Next . mcrypt_enc_get_iv_size . Up . mcrypt_enc_get_modes_name
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-enc-get-algorithms-name.html -- 3.4 Кб -- 03.02.2002
Похожие документы

1940. mcrypt_enc_get_iv_size
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.2) mcrypt_enc_get_iv_size -- Returns the size of the IV of the opened algorithm . int mcrypt_enc_get_iv_size ( resource td) . This function returns the size of the iv of the algorithm specified by the encryption descriptor in bytes. If it returns '0' then the IV is ignored in the algorithm. An IV is used in cbc, cfb and ofb modes, and in some algorithms in stream mode. Prev . Home . Next . mcrypt_enc_get_supported_key_sizes . Up . mcrypt_enc_get_algorithms_name
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-enc-get-iv-size.html -- 3.7 Кб -- 03.02.2002
Похожие документы

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

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