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

В начало ] Пред. | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | След.В конец ]

Упорядочить по: URL  |  дате изменения
1381. openssl_x509_checkpurpose
PHP Manual . ... PHP 4 >= 4.0.6) openssl_x509_checkpurpose -- Verifies if a certificate can be used for a particular purpose . ... Returns TRUE if the certificate can be used for the intended purpose, FALSE if it cannot, or -1 on error. openssl_x509_checkpurpose() examines the certificate specified by x509cert to see if it can be used for the purpose specified by purpose . ... X509_PURPOSE_SSL_CLIENT . ... Can the cert be used for Netscape SSL server? ... Can the cert be used for Any/All purposes? ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.openssl-x509-checkpurpose.html -- 6.5 Кб -- 03.02.2002
Похожие документы

1382. openssl_pkcs7_sign
PHP Manual . ... This function is EXPERIMENTAL . ... Be warned and use this function at your own risk. openssl_pkcs7_sign () takes the contents of the file named infilename and signs them using the certificate and it's matching private key specified by signcert and privkey parameters. headers is an array of headers that will be prepended to the data after it has been signed (see openssl_pkcs7_encrypt() for more information about the format of this parameter. flags can be used ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.openssl-pkcs7-sign.html -- 6.1 Кб -- 03.02.2002
Похожие документы

1383. openssl_pkcs7_decrypt
PHP Manual . ... PHP 4 >= 4.0.6) openssl_pkcs7_decrypt -- Decrypts an S/MIME encrypted message . bool openssl_pkcs7_decrypt ( string infilename, string outfilename, mixed recipcert, mixed recipkey) . ... This function is EXPERIMENTAL . ... Decrypts the S/MIME encrypted message contained in the file specified by infilename using the certificate and it's associated private key specified by recipcert and recipkey . The decrypted message is output to the file specified by outfilename . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.openssl-pkcs7-decrypt.html -- 5.1 Кб -- 03.02.2002
Похожие документы

1384. openssl_pkcs7_encrypt
PHP Manual . ... PHP 4 >= 4.0.6) openssl_pkcs7_encrypt -- Encrypt an S/MIME message . ... Be warned and use this function at your own risk. openssl_pkcs7_encrypt () takes the contents of the file named infilename and encrypts them using an RC2 40-bit cipher so that they can only be read by the intended recipients specified by recipcerts , which is either a lone X.509 certificate, or an array of X.509 certificates. headers is an array of headers that will be prepended to the ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.openssl-pkcs7-encrypt.html -- 6.0 Кб -- 03.02.2002
Похожие документы

1385. openssl_sign
... Next . PHP 4 >= 4.0.4) openssl_sign -- Generate signature . bool openssl_sign ( string data, string signature, mixed priv_key_id) . ... data is assumed to contain the data to be signed // fetch private key from file and ready it $fp = fopen("/src/openssl-0.9.6/demos/sign/key.pem", "r"); $priv_key = fread($fp, 8192); fclose($fp); $pkeyid = openssl_get_privatekey($priv_key); // compute signature openssl_sign($data, $signature, $pkeyid); // free the key from memory openssl_free_key($pkeyid); . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.openssl-sign.html -- 5.1 Кб -- 03.02.2002
Похожие документы

1386. openssl_verify
PHP Manual . ... int openssl_verify ( string data, string signature, mixed pub_key_id) . ... data and $ signature are assumed to contain the data and the signature // fetch public key from certificate and ready it $fp = fopen( /src/openssl-0.9.6/demos/sign/ cert .pem , r ); $ cert = fread($fp, 8192); fclose($fp); $ pubkeyid = openssl_get_publickey($ cert ); // state whether signature is okay or not $ok = openssl_verify ($ data , $ signature , $ pubkeyid ); if ($ok == 1) ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.openssl-verify.html -- 5.2 Кб -- 03.02.2002
Похожие документы

1387. openssl_open
... PHP 4 >= 4.0.4) openssl_open -- Open sealed data . bool openssl_open ( string sealed_data, string open_data, string env_key, mixed priv_key_id) . ... This function is EXPERIMENTAL . ... openssl_open() opens (decrypts) sealed_data using the private key associated with the key identifier priv_key_id and the envelope key env_key , and fills open_data with the decrypted data. The envelope key is generated when the data are sealed and can only be used by one specific private key. ... openssl_seal ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.openssl-open.html -- 5.6 Кб -- 03.02.2002
Похожие документы

1388. openssl_seal
... int openssl_seal ( string data, string sealed_data, array env_keys, array pub_key_ids) . ... data is assumed to contain the data to be sealed // fetch public keys for our recipients, and ready them $fp = fopen( /src/openssl-0.9.6/demos/maurice/ cert .pem , r ); $ cert = fread($fp, 8192); fclose($fp); $ pk1 = openssl_get_publickey($ cert ); // Repeat for second recipient $fp = fopen( /src/openssl-0.9.6/demos/sign/ cert .pem , r ); $ cert = fread($fp, 8192); fclose($fp); $ ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.openssl-seal.html -- 5.7 Кб -- 03.02.2002
Похожие документы

1389. openssl_free_key
PHP Manual . Prev . Next . PHP 4 >= 4.0.4) openssl_free_key -- Free key resource . void openssl_free_key ( resource key_identifier) . ... This function is EXPERIMENTAL . The behaviour of this function, the name of this function, and anything else documented about this function may change in a future release of PHP without notice. Be warned and use this function at your own risk. openssl_free_key() frees the key associated with the specified key_identifier from memory. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.openssl-free-key.html -- 3.9 Кб -- 03.02.2002
Похожие документы

1390. openssl_get_privatekey
PHP Manual . Prev . ... PHP 4 >= 4.0.4) openssl_get_privatekey -- Prepare a PEM formatted private key for use . resource openssl_get_privatekey ( mixed key [, string passphrase]) . ... Returns a positive key resource identifier on success, or FALSE on error. openssl_get_privatekey() parses the PEM formatted private key specified by key and prepares it for use by other functions. The optional parameter passphrase must be used if the specified key is encrypted (protected by a passphrase). ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.openssl-get-privatekey.html -- 4.3 Кб -- 03.02.2002
Похожие документы

1391. openssl_get_publickey
PHP Manual . Prev . Next . PHP 4 >= 4.0.4) openssl_get_publickey -- Extract public key from certificate and prepare it for use . resource openssl_get_publickey ( mixed certificate) . ... This function is EXPERIMENTAL . ... Returns a positive key resource identifier on success, or FALSE on error. openssl_get_publickey() extracts the public key from an X.509 certificate specified by certificate and prepares it for use by other functions. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.openssl-get-publickey.html -- 4.1 Кб -- 03.02.2002
Похожие документы

1392. openssl_error_string
... PHP 4 >= 4.0.6) openssl_error_string -- Return openSSL error message . ... The behaviour of this function, the name of this function, and anything else documented about this function may change in a future release of PHP without notice. ... The parameters/return type of this function may change before it appears in a release version of PHP . Example 1. openssl_error_string() example . lets assume you just called an openssl function that failed while($msg = openssl_error_string) echo $msg . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.openssl-error-string.html -- 4.8 Кб -- 03.02.2002
Похожие документы

1393. OCICollTrim
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.6) OCICollTrim -- Coming soon. string OCICollTrim ( object collection, int num) . Coming soon. Prev . Home . Next . OCICollSize . Up . OpenSSL functions
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ocicolltrim.html -- 3.1 Кб -- 03.02.2002
Похожие документы

1394. Oracle 8 functions
PHP Manual . ... php // by sergo@bacup.ru // Use option: OCI_DEFAULT for execute command to delay execution OCIExecute($stmt, OCI_DEFAULT); // for retrieve data use (after fetch): $ result = OCIResult($stmt, $n); if (is_object ($ result )) $ result = $ result - load(); // For INSERT or UPDATE statement use : $sql = insert into table (field1, field2) values (field1 = 'value', field2 = empty_clob()) returning field2 into :field2 ... Returns a new session. ... OCIWriteLobToFile -- Coming soon. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/ref.oci8.html -- 12.8 Кб -- 03.02.2002
Похожие документы

1395. OCICollMax
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.6) OCICollMax -- Coming soon. string OCICollMax ( object collection) . Coming soon. Prev . Home . Next . OCICollGetElem . Up . OCICollSize
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ocicollmax.html -- 3.1 Кб -- 03.02.2002
Похожие документы

1396. OCICollSize
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.6) OCICollSize -- Coming soon. string OCICollSize ( object collection) . Coming soon. Prev . Home . Next . OCICollMax . Up . OCICollTrim
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ocicollsize.html -- 3.1 Кб -- 03.02.2002
Похожие документы

1397. OCICollAssignElem
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.6) OCICollAssignElem -- Coming soon. string OCICollAssignElem ( object collection, string ndx, string val) . Coming soon. Prev . Home . Next . OCICollAppend . Up . OCICollGetElem
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ocicollassignelem.html -- 3.2 Кб -- 03.02.2002
Похожие документы

1398. OCICollGetElem
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.6) OCICollGetElem -- Coming soon. string OCICollGetElem ( object collection, string ndx) . Coming soon. Prev . Home . Next . OCICollAssignElem . Up . OCICollMax
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ocicollgetelem.html -- 3.2 Кб -- 03.02.2002
Похожие документы

1399. OCICollAppend
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.6) OCICollAppend -- Coming soon. string OCICollAppend ( object collection, object object) . Coming soon. Prev . Home . Next . OCICollAssign . Up . OCICollAssignElem
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ocicollappend.html -- 3.2 Кб -- 03.02.2002
Похожие документы

1400. OCICollAssign
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.6) OCICollAssign -- Coming soon. string OCICollAssign ( object collection, object object) . Coming soon. Prev . Home . Next . OCIFreeCollection . Up . OCICollAppend
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ocicollassign.html -- 3.2 Кб -- 03.02.2002
Похожие документы

В начало ] Пред. | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | След.В конец ]

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