SP800108HmacCounterKdf.DeriveBytes メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
DeriveBytes(Byte[], HashAlgorithmName, Byte[], Byte[], Int32)
指定した長さのキーを派生させます。
public:
static cli::array <System::Byte> ^ DeriveBytes(cli::array <System::Byte> ^ key, System::Security::Cryptography::HashAlgorithmName hashAlgorithm, cli::array <System::Byte> ^ label, cli::array <System::Byte> ^ context, int derivedKeyLengthInBytes);
public static byte[] DeriveBytes (byte[] key, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, byte[] label, byte[] context, int derivedKeyLengthInBytes);
static member DeriveBytes : byte[] * System.Security.Cryptography.HashAlgorithmName * byte[] * byte[] * int -> byte[]
Public Shared Function DeriveBytes (key As Byte(), hashAlgorithm As HashAlgorithmName, label As Byte(), context As Byte(), derivedKeyLengthInBytes As Integer) As Byte()
パラメーター
- key
- Byte[]
キー派生キー。
- hashAlgorithm
- HashAlgorithmName
HMAC アルゴリズム。
- label
- Byte[]
派生キーの目的を識別するラベル。
- context
- Byte[]
派生キーに関連する情報を含むコンテキスト。
- derivedKeyLengthInBytes
- Int32
派生キーの長さ (バイト単位)。
戻り値
派生キーを含む配列。
例外
key
は null
です。
-又は-
label
は null
です。
-又は-
context
は null
です。
-又は-
hashAlgorithm
には、null
されている Name があります。
hashAlgorithm
には空の Name があります。
derivedKeyLengthInBytes
が負の値であるか、派生可能な最大バイト数を超えています。
hashAlgorithm
は、既知またはサポートされているハッシュ アルゴリズムではありません。
現在のプラットフォームには、HMAC のサポートされている実装がありません。
適用対象
DeriveBytes(Byte[], HashAlgorithmName, String, String, Int32)
指定した長さのキーを派生させます。
public:
static cli::array <System::Byte> ^ DeriveBytes(cli::array <System::Byte> ^ key, System::Security::Cryptography::HashAlgorithmName hashAlgorithm, System::String ^ label, System::String ^ context, int derivedKeyLengthInBytes);
public static byte[] DeriveBytes (byte[] key, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, string label, string context, int derivedKeyLengthInBytes);
static member DeriveBytes : byte[] * System.Security.Cryptography.HashAlgorithmName * string * string * int -> byte[]
Public Shared Function DeriveBytes (key As Byte(), hashAlgorithm As HashAlgorithmName, label As String, context As String, derivedKeyLengthInBytes As Integer) As Byte()
パラメーター
- key
- Byte[]
キー派生キー。
- hashAlgorithm
- HashAlgorithmName
HMAC アルゴリズム。
- label
- String
派生キーの目的を識別するラベル。
- context
- String
派生キーに関連する情報を含むコンテキスト。
- derivedKeyLengthInBytes
- Int32
派生キーの長さ (バイト単位)。
戻り値
派生キーを含む配列。
例外
key
は null
です。
-又は-
label
は null
です。
-又は-
context
は null
です。
-又は-
hashAlgorithm
には、null
されている Name があります。
hashAlgorithm
には空の Name があります。
derivedKeyLengthInBytes
が負の値であるか、派生可能な最大バイト数を超えています。
hashAlgorithm
は、既知またはサポートされているハッシュ アルゴリズムではありません。
label
または context
に、UTF-8 に変換できないテキストが含まれています。
現在のプラットフォームには、HMAC のサポートされている実装がありません。
注釈
label
と context
は、UTF-8 エンコードを使用してバイトに変換されます。 他のエンコーディングの場合は、目的のエンコーディングを使用して変換を実行し、ラベルとコンテキストをバイトシーケンスとして受け入れるオーバーロードを使用します。
適用対象
DeriveBytes(ReadOnlySpan<Byte>, HashAlgorithmName, ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Int32)
指定した長さのキーを派生させます。
public:
static cli::array <System::Byte> ^ DeriveBytes(ReadOnlySpan<System::Byte> key, System::Security::Cryptography::HashAlgorithmName hashAlgorithm, ReadOnlySpan<System::Byte> label, ReadOnlySpan<System::Byte> context, int derivedKeyLengthInBytes);
public static byte[] DeriveBytes (ReadOnlySpan<byte> key, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, ReadOnlySpan<byte> label, ReadOnlySpan<byte> context, int derivedKeyLengthInBytes);
static member DeriveBytes : ReadOnlySpan<byte> * System.Security.Cryptography.HashAlgorithmName * ReadOnlySpan<byte> * ReadOnlySpan<byte> * int -> byte[]
Public Shared Function DeriveBytes (key As ReadOnlySpan(Of Byte), hashAlgorithm As HashAlgorithmName, label As ReadOnlySpan(Of Byte), context As ReadOnlySpan(Of Byte), derivedKeyLengthInBytes As Integer) As Byte()
パラメーター
- key
- ReadOnlySpan<Byte>
キー派生キー。
- hashAlgorithm
- HashAlgorithmName
HMAC アルゴリズム。
- label
- ReadOnlySpan<Byte>
派生キーの目的を識別するラベル。
- context
- ReadOnlySpan<Byte>
派生キーに関連する情報を含むコンテキスト。
- derivedKeyLengthInBytes
- Int32
派生キーの長さ (バイト単位)。
戻り値
派生キーを含む配列。
例外
hashAlgorithm
には、null
されている Name があります。
hashAlgorithm
には空の Name があります。
derivedKeyLengthInBytes
が負の値であるか、派生可能な最大バイト数を超えています。
hashAlgorithm
は、既知またはサポートされているハッシュ アルゴリズムではありません。
現在のプラットフォームには、HMAC のサポートされている実装がありません。
適用対象
DeriveBytes(ReadOnlySpan<Byte>, HashAlgorithmName, ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Span<Byte>)
バッファーに派生キーを入力します。
public:
static void DeriveBytes(ReadOnlySpan<System::Byte> key, System::Security::Cryptography::HashAlgorithmName hashAlgorithm, ReadOnlySpan<System::Byte> label, ReadOnlySpan<System::Byte> context, Span<System::Byte> destination);
public static void DeriveBytes (ReadOnlySpan<byte> key, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, ReadOnlySpan<byte> label, ReadOnlySpan<byte> context, Span<byte> destination);
static member DeriveBytes : ReadOnlySpan<byte> * System.Security.Cryptography.HashAlgorithmName * ReadOnlySpan<byte> * ReadOnlySpan<byte> * Span<byte> -> unit
Public Shared Sub DeriveBytes (key As ReadOnlySpan(Of Byte), hashAlgorithm As HashAlgorithmName, label As ReadOnlySpan(Of Byte), context As ReadOnlySpan(Of Byte), destination As Span(Of Byte))
パラメーター
- key
- ReadOnlySpan<Byte>
キー派生キー。
- hashAlgorithm
- HashAlgorithmName
HMAC アルゴリズム。
- label
- ReadOnlySpan<Byte>
派生キーの目的を識別するラベル。
- context
- ReadOnlySpan<Byte>
派生キーに関連する情報を含むコンテキスト。
例外
hashAlgorithm
には、null
されている Name があります。
hashAlgorithm
には空の Name があります。
destination
は、派生可能な最大バイト数を超えています。
hashAlgorithm
は、既知またはサポートされているハッシュ アルゴリズムではありません。
現在のプラットフォームには、HMAC のサポートされている実装がありません。
適用対象
DeriveBytes(ReadOnlySpan<Byte>, HashAlgorithmName, ReadOnlySpan<Char>, ReadOnlySpan<Char>, Int32)
指定した長さのキーを派生させます。
public:
static cli::array <System::Byte> ^ DeriveBytes(ReadOnlySpan<System::Byte> key, System::Security::Cryptography::HashAlgorithmName hashAlgorithm, ReadOnlySpan<char> label, ReadOnlySpan<char> context, int derivedKeyLengthInBytes);
public static byte[] DeriveBytes (ReadOnlySpan<byte> key, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, ReadOnlySpan<char> label, ReadOnlySpan<char> context, int derivedKeyLengthInBytes);
static member DeriveBytes : ReadOnlySpan<byte> * System.Security.Cryptography.HashAlgorithmName * ReadOnlySpan<char> * ReadOnlySpan<char> * int -> byte[]
Public Shared Function DeriveBytes (key As ReadOnlySpan(Of Byte), hashAlgorithm As HashAlgorithmName, label As ReadOnlySpan(Of Char), context As ReadOnlySpan(Of Char), derivedKeyLengthInBytes As Integer) As Byte()
パラメーター
- key
- ReadOnlySpan<Byte>
キー派生キー。
- hashAlgorithm
- HashAlgorithmName
HMAC アルゴリズム。
- label
- ReadOnlySpan<Char>
派生キーの目的を識別するラベル。
- context
- ReadOnlySpan<Char>
派生キーに関連する情報を含むコンテキスト。
- derivedKeyLengthInBytes
- Int32
派生キーの長さ (バイト単位)。
戻り値
派生キーを含む配列。
例外
hashAlgorithm
には、null
されている Name があります。
hashAlgorithm
には空の Name があります。
derivedKeyLengthInBytes
が負の値であるか、派生可能な最大バイト数を超えています。
hashAlgorithm
は、既知またはサポートされているハッシュ アルゴリズムではありません。
label
または context
に、UTF-8 に変換できないテキストが含まれています。
現在のプラットフォームには、HMAC のサポートされている実装がありません。
注釈
label
と context
は、UTF-8 エンコードを使用してバイトに変換されます。 他のエンコーディングの場合は、目的のエンコーディングを使用して変換を実行し、ラベルとコンテキストをバイトシーケンスとして受け入れるオーバーロードを使用します。
適用対象
DeriveBytes(ReadOnlySpan<Byte>, HashAlgorithmName, ReadOnlySpan<Char>, ReadOnlySpan<Char>, Span<Byte>)
バッファーに派生キーを入力します。
public:
static void DeriveBytes(ReadOnlySpan<System::Byte> key, System::Security::Cryptography::HashAlgorithmName hashAlgorithm, ReadOnlySpan<char> label, ReadOnlySpan<char> context, Span<System::Byte> destination);
public static void DeriveBytes (ReadOnlySpan<byte> key, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, ReadOnlySpan<char> label, ReadOnlySpan<char> context, Span<byte> destination);
static member DeriveBytes : ReadOnlySpan<byte> * System.Security.Cryptography.HashAlgorithmName * ReadOnlySpan<char> * ReadOnlySpan<char> * Span<byte> -> unit
Public Shared Sub DeriveBytes (key As ReadOnlySpan(Of Byte), hashAlgorithm As HashAlgorithmName, label As ReadOnlySpan(Of Char), context As ReadOnlySpan(Of Char), destination As Span(Of Byte))
パラメーター
- key
- ReadOnlySpan<Byte>
キー派生キー。
- hashAlgorithm
- HashAlgorithmName
HMAC アルゴリズム。
- label
- ReadOnlySpan<Char>
派生キーの目的を識別するラベル。
- context
- ReadOnlySpan<Char>
派生キーに関連する情報を含むコンテキスト。
例外
hashAlgorithm
には、null
されている Name があります。
hashAlgorithm
には空の Name があります。
destination
は、派生可能な最大バイト数を超えています。
hashAlgorithm
は、既知またはサポートされているハッシュ アルゴリズムではありません。
label
または context
に、UTF-8 に変換できないテキストが含まれています。
現在のプラットフォームには、HMAC のサポートされている実装がありません。
注釈
label
と context
は、UTF-8 エンコードを使用してバイトに変換されます。 他のエンコーディングの場合は、目的のエンコーディングを使用して変換を実行し、ラベルとコンテキストをバイトシーケンスとして受け入れるオーバーロードを使用します。
適用対象
.NET