検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 150 for Hash (0.004 sec.)
実行時設定 6067
« インストール手順 リソース型 » PHP Manual インストール/設定 実行時設定 実行時設定 php.ini の設定 ... _PERDIR session.lazy_write "1" PHP_INI_ALL session.hash_function "0" PHP_INI_ALL PHP 7.1.0 で削除されました ... 。 session.hash_bits_per_character "4" PHP_INI_ALL PHP 7.1.0 で削除 ... とを推奨します。 ヒント 互換性に関するメモ: session.hash_function =0 (MD5) で session.hash_bits_per_charact ... er =4 の場合、あるいは session.hash_function =1 (SHA1) で session.hash_bits_per_charac ...
https://man.plustar.jp/php/session.configuration.html - [similar]
SessionHandler クラス 6020
« session_write_close SessionHandler::close » PHP Manual Sessions SessionHandler クラス SessionH ... ーの長さに依存します $data00 = $password . $salt ; $hash = array(); $hash [ 0 ] = hash ( 'sha256' , $data00 ... , true ); $result = $hash [ 0 ]; for ( $i = 1 ; $i < $rounds ; $i ++) { $has ... h [ $i ] = hash ( 'sha256' , $hash [ $i - 1 ]. $data00 , true ); $ ... result .= $hash [ $i ]; } $key = substr ( $result , 0 , 32 ); $iv ...
https://man.plustar.jp/php/class.sessionhandler.html - [similar]
定義済み定数 6020
« リソース型 有効期限 » PHP Manual Memcached 定義済み定数 定義済み定数 以下の定数が定義されていま ... ません。 型: string 、デフォルト: "" Memcached::OPT_HASH アイテムのキーに使うハッシュアルゴリズムを指定しま ... す。 有効な値は、定数 Memcached::HASH_* のいずれかです。 どのハッシュアルゴリズムにもそれ ... トで進めましょう。 型: int 、デフォルト: Memcached::HASH_DEFAULT Memcached::HASH_DEFAULT デフォルトのハッシ ... ュアルゴリズム (Jenkins one-at-a-time)。 Memcached::HASH_MD5 MD5 ハッシュアルゴリズム。 Memcached::HASH_CRC ...
https://man.plustar.jp/php/memcached.constants.html - [similar]
はじめに 5938
« Hash インストール/設定 » PHP Manual Hash はじめに はじめに メッセージダイジェスト (ハッシュ) エ ... あるいは段階的な処理を可能とします。 関連キーワード: Hash , メッセージ , ハッシュ , インストール , 設定 , ダ ...
https://man.plustar.jp/php/intro.hash.html - [similar]
文字列の一方向のハッシュ化を行う 5903
« crc32 echo » PHP Manual String 関数 文字列の一方向のハッシュ化を行う crypt (PHP 4, PHP 5, PHP ... を指定して、セキュリティを確保しましょう。 password_hash() は、強力なハッシュを使い、強力なソルトを生成して ... 、それを複数回自動的に適用します。 password_hash() は crypt() のシンプルなラッパーであり、既存のパス ... ワードハッシュと互換性があります。 password_hash() を使うことを推奨します。 ハッシュ方式は、salt 引 ... 知のハッシュとを比較します。 この比較を行うために、 hash_equals() 関数が使えます。 変更履歴 バージョン 説明 ...
https://man.plustar.jp/php/function.crypt.html - [similar]
Phar アーカイブの MD5/SHA1/SHA256/SHA512/OpenSSL シグネチャを返す 5903
« Phar::getPath Phar::getStub » PHP Manual Phar Phar アーカイブの MD5/SHA1/SHA256/SHA512/OpenSSL ... ているアーカイブのシグネチャを配列で返します。 キー hash にはシグネチャ自体を、そしてキー hash_type には MD ... 合性を検証する際に使用します。 INI 設定 phar.require_hash が true の場合は、すべての実行可能な phar が有効な ... ar , アーカイブ , SHA , A5 , phar , getSignature , hash , 検証 , キー , 格納 ...
https://man.plustar.jp/php/phar.getsignature.html - [similar]
ハッシュ値を計算する 5821
« mhash_keygen_s2k OpenSSL » PHP Manual Mhash 関数 ハッシュ値を計算する mhash (PHP 4, PHP 5, PHP ... 7, PHP 8) mhash — ハッシュ値を計算する 警告 この関数は PHP 8.1.0 で ... ます。この関数に頼らないことを強く推奨します。 説明 mhash ( int $hash , string $data , string $key = ? ): st ... ring mhash() は、 hash で指定したハッシュ関数を data に適用し ... ます。 パラメータ algo ハッシュ ID。 MHASH_ハッシュ名 定数のいずれかを指定します。 data ユーザ ...
https://man.plustar.jp/php/function.mhash.html - [similar]
定義済み定数 5821
« リソース型 HashContext » PHP Manual Hash 定義済み定数 定義済み定数 以下の定数が定義されています ... 実行時に動的にロードされている場合のみ使用可能です。 HASH_HMAC ( int ) hash_init() のオプションのフラグです。 ...
https://man.plustar.jp/php/hash.constants.html - [similar]
文字列の sha1 ハッシュを計算する 5798
« sha1_file similar_text » PHP Manual String 関数 文字列の sha1 ハッシュを計算する sha1 (PHP 4 > ... tring , bool $binary = false ): string » US Secure Hash Algorithm 1 を使用して string の sha1 ハッシュを計 ... 式計算を行う md5() - 文字列のmd5ハッシュ値を計算する hash() - ハッシュ値 (メッセージダイジェスト) を生成する ... rypt() - 文字列の一方向のハッシュ化を行う password_hash() - パスワードハッシュを作る 関連キーワード: ハッシ ... 計算 , string , binary , パスワード , file , 関数 , hash , ダイジェスト , バイナリ ...
https://man.plustar.jp/php/function.sha1.html - [similar]
Connection handling and persistence 5798
« Architecture Persisting Data » PHP Manual Driver Architecture and Internals Connection handlin ... ongoDB\Driver\Manager::__construct() is invoked, a hash is created from its arguments (i.e. URI string and ... ously persisted » libmongoc client object for that hash. If an existing client cannot be found for the has ... topology . Database connections are persisted by a hash derived from the server's host, port, and the URI ... nstructor's array options are not included in this hash. 注意 : Versions of the driver >= 1.1.8 and < 1.2. ...
https://man.plustar.jp/php/mongodb.connection-handling.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT