KeyDerivationAlgorithmNames.Sp80056aConcatSha256 Property

Definition

Retrieves a string that contains "SP800_108_CTR_HMAC_SHA256".

public:
 static property Platform::String ^ Sp80056aConcatSha256 { Platform::String ^ get(); };
static winrt::hstring Sp80056aConcatSha256();
public static string Sp80056aConcatSha256 { get; }
var string = KeyDerivationAlgorithmNames.sp80056aConcatSha256;
Public Shared ReadOnly Property Sp80056aConcatSha256 As String

Property Value

String

Platform::String

winrt::hstring

String that contains "SP800_108_CTR_HMAC_SHA256".

Remarks

Use the string retrieved by this property to set the Key Derivation Function (KDF) name when you call the OpenAlgorithm method on the KeyDerivationAlgorithmProvider class. The string represents an Sp800-56a algorithm that uses a Hashed Message Authentication Code (HMAC) based on the SHA256 (Secure Hash Algorithm 256) message digest algorithm as the underlying pseudorandom function.

To use this KDF, you must specify the appropriate parameters by calling the BuildForSP80056a method on the KeyDerivationParameters class. The parameters are internally concatenated before the function is used by the CreateKey method to derive a key.

Applies to

See also