sodium_crypto_kdf_derive_from_key
(PHP 7 >= 7.2.0, PHP 8)
sodium_crypto_kdf_derive_from_key — サブキーを派生させる
説明
sodium_crypto_kdf_derive_from_key(
int
int
string
#[\SensitiveParameter] string
): string
int
$subkey_length
,int
$subkey_id
,string
$context
,#[\SensitiveParameter] string
$key
): string
ルートキーと追加のコンテクストから、サブキーを派生させます。
hash_hkdf() に似ています。
パラメータ
subkey_length
-
返すキーの長さ(バイト単位)
subkey_id
-
与えられたルートキーから返されるN番目のサブキーのID。 シークさせる時に便利です。
context
-
アプリケーション特有のコンテクスト
key
-
サブキーを派生させるルートキー
戻り値
擬似ランダムな(生のバイナリの)バイト列を文字列として返します。
+add a note
User Contributed Notes
There are no user contributed notes for this page.