KeyDerivationAlgorithmNames.Sp800108CtrHmacSha384 Property

Definition

Retrieves a string that contains "SP800_108_CTR_HMAC_SHA384".

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

Property Value

String

Platform::String

winrt::hstring

String that contains "SP800_108_CTR_HMAC_SHA384".

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 a Sp800-108 algorithm in counter mode that uses a Hashed Message Authentication Code based on the Secure Hash Algorithm 384 message digest algorithm (HmacSha384) as the underlying pseudorandom function.

To use this KDF, you must specify the appropriate parameters by calling the BuildForSP800108 method on the KeyDerivationParameters before calling the CreateKey method to derive a key.

Applies to

See also