KeyDerivationAlgorithmNames.Sp800108CtrHmacSha512 Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Retrieves a string that contains "SP800_108_CTR_HMAC_SHA512".
public:
static property Platform::String ^ Sp800108CtrHmacSha512 { Platform::String ^ get(); };
static winrt::hstring Sp800108CtrHmacSha512();
public static string Sp800108CtrHmacSha512 { get; }
var string = KeyDerivationAlgorithmNames.sp800108CtrHmacSha512;
Public Shared ReadOnly Property Sp800108CtrHmacSha512 As String
Property Value
String that contains "SP800_108_CTR_HMAC_SHA512".
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 512 message digest algorithm (HmacSha512) 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.