検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 492 for Password (0.007 sec.)
SSH 上でプレーンなパスワードを使用した認証を行う 6128
« ssh2_auth_none ssh2_auth_pubkey_file » PHP Manual SSH2 関数 SSH 上でプレーンなパスワードを使用 ... した認証を行う ssh2_auth_password (PECL ssh2 >= 0.9.0) ssh2_auth_password — SSH 上で ... ーンなパスワードを使用した認証を行う 説明 ssh2_auth_password ( resource $session , string $username , string $p ... SH 接続リンク ID。 username リモートのユーザー名。 password username のパスワード。 戻り値 成功した場合に true ... nnect ( 'shell.example.com' , 22 ); if ( ssh2_auth_password ( $connection , 'username' , 'secret' )) { echo "A ...
https://man.plustar.jp/php/function.ssh2-auth-password.html - [similar]
Constructor for the SolrClient object 6080
« SolrClient::commit SolrClient::deleteById » PHP Manual SolrClient Constructor for the SolrClie ... e username used for HTTP Authentication, if any) - password (The HTTP Authentication password) - proxy_host (T ... y port) - proxy_login (The proxy username) - proxy_password (The proxy password) - timeout (This is maximum ti ... to a PEM-formatted private key file only) - ssl_keypassword (Password for private key) - ssl_cainfo (Name of f ... have to specify a separate ssl_key file The ssl_keypassword option is required if the ssl_cert or ssl_key opti ...
https://man.plustar.jp/php/solrclient.construct.html - [similar]
要件 6000
« インストール/設定 インストール手順 » PHP Manual インストール/設定 要件 要件 これらの関数を有効 ... ーバのデフォルトパスワードプラグインを mysql_native_password に設定するようにしてください。 さもないと、 The se ... ication method unknown to the client [caching_sha2_password] のようなエラーを見ることになります。たとえあなたが ... caching_sha2_password を使っていなくても、です。 これは MySQL 8 のデフォ ... のリリースが認識していないプラグイン caching_sha2_password だからです。 かわりに、 my.cnf の設定を default_au ...
https://man.plustar.jp/php/mysqli.requirements.html - [similar]
PASSWD 拡張オペレーションのヘルパ 5912
« ldap_escape ldap_exop_refresh » PHP Manual LDAP 関数 PASSWD 拡張オペレーションのヘルパ ldap_ex ... Connection $ldap , string $user = "" , string $old_password = "" , string $new_password = "" , array &$control ... タンス。 user パスワードを変更するユーザーの dn old_password このユーザーの古いパスワード。 サーバの設定によって ... は省略可能です。 new_password このユーザーの新しいパスワード。 生成されたパスワー ... AP コントロール の配列 で埋められます。 戻り値 new_password が空だったり省略されたりした場合は、 生成されたパス ...
https://man.plustar.jp/php/function.ldap-exop-passwd.html - [similar]
パスワードが、ハッシュ値と一致するかを調べる 5824
« sodium_crypto_pwhash_str_needs_rehash sodium_crypto_pwhash_str » PHP Manual Sodium 関数 パスワ ... _crypto_pwhash_str_verify ( string $hash , string $password ): bool sodium_crypto_pwhash_str() を使って生成され ... パスワードとマッチするかを調べます。 この関数と似た password_verify() に指定する同じ引数と、順番が逆であることに ... 注意して下さい。 パラメータ hash password_hash() が作ったハッシュ。 password ユーザーのパスワ ... r() - ASCII 文字でエンコードされたハッシュ値を得る password_hash() - パスワードハッシュを作る password_verify( ...
https://man.plustar.jp/php/function.sodium-crypto-pwhash-str-verify.html - [similar]
ストレージの暗号化 5824
« データベースへの接続 SQLインジェクション » PHP Manual データベースのセキュリティ ストレージの暗 ... その暗号学的ハッシュ値を格納する方法です。 PHP は password 関数を提供しており、 機密データをハッシュしたりその ... ッシュを扱ったりする便利な仕組みが用意されています。 password_hash() は、その時点で最も強力なアルゴリズムを使って ... 、 与えられた文字列をハッシュします。また password_verify() は、与えられたパスワードのハッシュがデータ ... UES('%s','%s');" , pg_escape_string ( $username ), password_hash ( $password , PASSWORD_DEFAULT )); $result = ...
https://man.plustar.jp/php/security.database.storage.html - [similar]
Expect の使用例 5745
« 例 Expect 関数 » PHP Manual 例 Expect の使用例 Expect の使用例 例1 Expect の使用例 この例ではリ ... st uptime" , "r" ); $cases = array ( array ( 0 => "password:" , 1 => PASSWORD ) ); switch ( expect_expectl ( $ ... stream , $cases )) { case PASSWORD : fwrite ( $stream , "password\n" ); break; defaul ... itch ( expect_expectl ( $stream , array ( array ( "password:" , PASSWORD ), // SSH がパスワードを問い合わせます ... P_EXACT ), // シェルにたどり着きました! ))) { case PASSWORD : fwrite ( $stream , "secret\n" ); break; case YES ...
https://man.plustar.jp/php/expect.examples-usage.html - [similar]
文字列の一方向のハッシュ化を行う 5697
« crc32 echo » PHP Manual String 関数 文字列の一方向のハッシュ化を行う crypt (PHP 4, PHP 5, PHP ... のアルゴリズムか、 代替のアルゴリズムを使用します。 password_verify() は crypt() と互換性があるので、 crypt() が ... 作ったパスワードハッシュは password_verify() でも使えます。 salt パラメータは必須ではあ ... 強いソルトを指定して、セキュリティを確保しましょう。 password_hash() は、強力なハッシュを使い、強力なソルトを生成 ... して、それを複数回自動的に適用します。 password_hash() は crypt() のシンプルなラッパーであり、既存 ...
https://man.plustar.jp/php/function.crypt.html - [similar]
ASCII 文字でエンコードされたハッシュ値を得る 5697
« sodium_crypto_pwhash_str_verify sodium_crypto_pwhash » PHP Manual Sodium 関数 ASCII 文字でエン ... シュ値を得る 説明 sodium_crypto_pwhash_str ( string $password , int $opslimit , int $memlimit ): string ランダム ... でエンコードされたハッシュを生成します。 パラメータ password ハッシュを生成するパスワードを文字列で指定します。 ... です。 例 例1 sodium_crypto_pwhash_str() の例 <?php $password = 'password' ; echo sodium_crypto_pwhash_str ( $pa ... サイドチャネル攻撃の両方に対する耐性を提供します。 password_hash() と異なり、 salt の引数は存在せず(自動生成さ ...
https://man.plustar.jp/php/function.sodium-crypto-pwhash-str.html - [similar]
PBKDF2 を使ってパスワードからキーを生成する 5657
« hash_init hash_update_file » PHP Manual Hash 関数 PBKDF2 を使ってパスワードからキーを生成する ... を生成する 説明 hash_pbkdf2 ( string $algo , string $password , string $salt , int $iterations , int $length = 0 ... アルゴリズムの一覧は hash_algos() をご参照ください。 password 派生に使うパスワード salt 派生に使うソルト。ランダ ... 。 例 例1 hash_pbkdf2() の基本的な使い方の例 <?php $password = "password" ; $iterations = 1000 ; // ランダムな ... do_bytes ( 16 ); $hash = hash_pbkdf2 ( "sha256" , $password , $salt , $iterations , 20 ); var_dump ( $hash ); ...
https://man.plustar.jp/php/function.hash-pbkdf2.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT