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

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

Упорядочить по: URL  |  дате изменения
1961. mcrypt_ofb
... 3.0.8 - 3.0.18 only, PHP 4 >= 4.0.0) mcrypt_ofb -- Encrypt/decrypt data in OFB mode . string mcrypt_ofb ( int cipher, string key, string data, int mode, string iv)string mcrypt_ofb ( 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_ofb() encrypts or decrypts (depending on mode ) the data with cipher and key in OFB cipher mode and returns the resulting string. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-ofb.html -- 4.7 Кб -- 03.02.2002
Похожие документы

1962. mcrypt_cbc
... 3.0.8 - 3.0.18 only, PHP 4 >= 4.0.0) mcrypt_cbc -- Encrypt/decrypt data in CBC mode . string mcrypt_cbc ( int cipher, string key, string data, int mode [, string iv])string mcrypt_cbc ( 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_cbc() encrypts or decrypts (depending on mode ) the data with cipher and key in CBC cipher mode and returns the resulting string. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-cbc.html -- 4.6 Кб -- 03.02.2002
Похожие документы

1963. mcrypt_cfb
... 3.0.8 - 3.0.18 only, PHP 4 >= 4.0.0) mcrypt_cfb -- Encrypt/decrypt data in CFB mode . string mcrypt_cfb ( int cipher, string key, string data, int mode, string iv)string mcrypt_cfb ( 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_cfb() encrypts or decrypts (depending on mode ) the data with cipher and key in CFB cipher mode and returns the resulting string. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-cfb.html -- 4.6 Кб -- 03.02.2002
Похожие документы

1964. mcrypt_create_iv
PHP Manual . ... 3.0.8 - 3.0.18 only, PHP 4 >= 4.0.0) mcrypt_create_iv -- Create an initialization vector (IV) from a random source . string mcrypt_create_iv ( int size, int source) . ... The source can be MCRYPT_RAND (system random number generator), MCRYPT_DEV_RANDOM (read data from /dev/random) and MCRYPT_DEV_URANDOM (read data from /dev/urandom). ... php $cipher = MCRYPT_TripleDES; $block_size = mcrypt_get_block_size ($cipher); $iv = mcrypt_create_iv ($block_size, MCRYPT_DEV_RANDOM); ?> ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-create-iv.html -- 4.4 Кб -- 03.02.2002
Похожие документы

1965. mcrypt_get_key_size
... 3.0.8 - 3.0.18 only, PHP 4 >= 4.0.0) mcrypt_get_key_size -- Get the key size of the specified cipher . int mcrypt_get_key_size ( int cipher)int mcrypt_get_key_size ( string cipher, string module) . The first prototype is when linked against libmcrypt 2.2.x, the second when linked against libmcrypt 2.4.x. mcrypt_get_key_size() is used to get the size of a key of the specified cipher . mcrypt_get_key_size() takes one or two arguments, the cipher and module , and returns the size in bytes. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-get-key-size.html -- 4.0 Кб -- 03.02.2002
Похожие документы

1966. mcrypt_get_block_size
... 3.0.8 - 3.0.18 only, PHP 4 >= 4.0.0) mcrypt_get_block_size -- Get the block size of the specified cipher . int mcrypt_get_block_size ( int cipher)int mcrypt_get_block_size ( string cipher, string module) . The first prototype is when linked against libmcrypt 2.2.x, the second when linked against libmcrypt 2.4.x. mcrypt_get_block_size() is used to get the size of a block of the specified cipher . ... See also: mcrypt_get_key_size() . ... mcrypt_get_cipher_name . ... mcrypt_get_key_size ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-get-block-size.html -- 4.0 Кб -- 03.02.2002
Похожие документы

1967. mcrypt_get_cipher_name
... Next . 3.0.8 - 3.0.18 only, PHP 4 >= 4.0.0) mcrypt_get_cipher_name -- Get the name of the specified cipher . string mcrypt_get_cipher_name ( int cipher)string mcrypt_get_cipher_name ( string cipher) . mcrypt_get_cipher_name() is used to get the name of the specified cipher. mcrypt_get_cipher_name() takes the cipher number as an argument (libmcrypt 2.2.x) or takes the cipher name as an argument (libmcrypt 2.4.x) and returns the name of the cipher or FALSE , if the cipher does not exist. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcrypt-get-cipher-name.html -- 4.4 Кб -- 03.02.2002
Похожие документы

1968. mcal_week_of_year
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) mcal_week_of_year -- Returns the week number of the given date . int mcal_week_of_year ( int day, int month, int year) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . mcal_expunge . Up . Mcrypt Encryption Functions
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcal-week-of-year.html -- 3.5 Кб -- 03.02.2002
Похожие документы

1969. MCAL functions
... MCAL_SATURDAY For recurrence : . ... mcal_event_set_category -- Sets the category of the streams global event structure . ... mcal_event_set_recur_none -- Sets the recurrence of the streams global event structure . mcal_event_set_recur_daily -- Sets the recurrence of the streams global event structure . mcal_event_set_recur_weekly -- Sets the recurrence of the streams global event structure . mcal_event_set_recur_monthly_mday -- Sets the recurrence of the streams global event structure . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/ref.mcal.html -- 11.7 Кб -- 03.02.2002
Похожие документы

1970. mcal_event_add_attribute
. PHP Manual . Prev . Next . (3.0.15 - 3.0.18 only, PHP 4 >= 4.0.0) mcal_event_add_attribute -- Adds an attribute and a value to the streams global event structure . void mcal_event_add_attribute ( int stream, string attribute, string value) . mcal_event_add_attribute() adds an attribute to the stream's global event structure with the value given by "value". Prev . Home . Next . mcal_fetch_current_stream_event . Up . mcal_expunge
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcal-event-add-attribute.html -- 3.5 Кб -- 03.02.2002
Похожие документы

1971. mcal_expunge
. PHP Manual . Prev . Next . (unknown) mcal_expunge -- Deletes all events marked for being expunged. int mcal_expunge ( int stream) . mcal_expunge() Deletes all events which have been previously marked for deletion. Prev . Home . Next . mcal_event_add_attribute . Up . mcal_week_of_year
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcal-expunge.html -- 3.3 Кб -- 03.02.2002
Похожие документы

1972. mcal_fetch_current_stream_event
... object mcal_fetch_current_stream_event ( int stream) . ... int id - ID of that event. int public - TRUE if the event if public, FALSE if it is private. string category - Category string of the event. string title - Title string of the event. string description - Description string of the event. int alarm - number of minutes before the event to send an alarm/reminder. object start - Object containing a datetime entry. object end - Object containing a datetime entry. int recur_type - recurrence type ....
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcal-fetch-current-stream-event.html -- 4.9 Кб -- 03.02.2002
Похожие документы

1973. mcal_event_set_recur_monthly_wday
PHP Manual . Prev . Next . 3.0.13 - 3.0.18 only, PHP 4 >= 4.0.0) mcal_event_set_recur_monthly_wday -- Sets the recurrence of the streams global event structure . int mcal_event_set_recur_monthly_wday ( int stream, int year, int month, int day, int interval) . mcal_event_set_recur_monthly_wday() sets the streams global event structure's recurrence to the given value to be reoccuring on a monthly by week basis, ending at the given date. ... mcal_event_set_recur_monthly_mday . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcal-event-set-recur-monthly-wday.html -- 3.7 Кб -- 03.02.2002
Похожие документы

1974. mcal_event_set_recur_yearly
. PHP Manual . Prev . Next . (3.0.13 - 3.0.18 only, PHP 4 >= 4.0.0) mcal_event_set_recur_yearly -- Sets the recurrence of the streams global event structure . int mcal_event_set_recur_yearly ( int stream, int year, int month, int day, int interval) . mcal_event_set_recur_yearly() sets the streams global event structure's recurrence to the given value to be reoccuring on a yearly basis,ending at the given date. Prev . Home . Next . mcal_event_set_recur_monthly_wday . Up . mcal_fetch_current_stream_event
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcal-event-set-recur-yearly.html -- 3.7 Кб -- 03.02.2002
Похожие документы

1975. mcal_event_set_recur_monthly_mday
PHP Manual . Prev . Next . 3.0.13 - 3.0.18 only, PHP 4 >= 4.0.0) mcal_event_set_recur_monthly_mday -- Sets the recurrence of the streams global event structure . int mcal_event_set_recur_monthly_mday ( int stream, int year, int month, int day, int interval) . mcal_event_set_recur_monthly_mday() sets the streams global event structure's recurrence to the given value to be reoccuring on a monthly by month day basis, ending at the given date. ... mcal_event_set_recur_monthly_wday ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcal-event-set-recur-monthly-mday.html -- 3.7 Кб -- 03.02.2002
Похожие документы

1976. mcal_event_set_recur_weekly
PHP Manual . Prev . Next . 3.0.13 - 3.0.18 only, PHP 4 >= 4.0.0) mcal_event_set_recur_weekly -- Sets the recurrence of the streams global event structure . int mcal_event_set_recur_weekly ( int stream, int year, int month, int day, int interval, int weekdays) . mcal_event_set_recur_weekly() sets the streams global event structure's recurrence to the given value to be reoccuring on a weekly basis, ending at the given date. ... mcal_event_set_recur_daily . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcal-event-set-recur-weekly.html -- 3.7 Кб -- 03.02.2002
Похожие документы

1977. mcal_event_set_recur_daily
. PHP Manual . Prev . Next . (3.0.13 - 3.0.18 only, PHP 4 >= 4.0.0) mcal_event_set_recur_daily -- Sets the recurrence of the streams global event structure . int mcal_event_set_recur_daily ( int stream, int year, int month, int day, int interval) . mcal_event_set_recur_daily() sets the streams global event structure's recurrence to the given value to be reoccuring on a daily basis, ending at the given date. Prev . Home . Next . mcal_event_set_recur_none . Up . mcal_event_set_recur_weekly
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcal-event-set-recur-daily.html -- 3.6 Кб -- 03.02.2002
Похожие документы

1978. mcal_event_set_recur_none
. PHP Manual . Prev . Next . (3.0.15 - 3.0.18 only, PHP 4 >= 4.0.0) mcal_event_set_recur_none -- Sets the recurrence of the streams global event structure . int mcal_event_set_recur_none ( int stream) . mcal_event_set_recur_none() sets the streams global event structure to not recur (event->recur_type is set to MCAL_RECUR_NONE ). Prev . Home . Next . mcal_next_recurrence . Up . mcal_event_set_recur_daily
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcal-event-set-recur-none.html -- 3.6 Кб -- 03.02.2002
Похожие документы

1979. mcal_date_compare
. PHP Manual . Prev . Next . (3.0.13 - 3.0.18 only, PHP 4 >= 4.0.0) mcal_date_compare -- Compares two dates . int mcal_date_compare ( int a_year, int a_month, int a_day, int b_year, int b_month, int b_day) . mcal_date_compare() Compares the two given dates, returns <0, 0, >0 if a<b, a==b, a>b respectively. Prev . Home . Next . mcal_day_of_year . Up . mcal_next_recurrence
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcal-date-compare.html -- 3.4 Кб -- 03.02.2002
Похожие документы

1980. mcal_next_recurrence
PHP Manual . Prev . Next . 3.0.13 - 3.0.18 only, PHP 4 >= 4.0.0) mcal_next_recurrence -- Returns the next recurrence of the event . int mcal_next_recurrence ( int stream, int weekstart, array next) . mcal_next_recurrence() returns an object filled with the next date the event occurs, on or after the supplied date. Returns empty date field if event does not occur or something is invalid. Uses weekstart to determine what day is considered the beginning of the week. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mcal-next-recurrence.html -- 3.6 Кб -- 03.02.2002
Похожие документы

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

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