KeyDerivationAlgorithmNames.Sp80056aConcatMd5 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_56A_CONCAT_MD5".
public:
static property Platform::String ^ Sp80056aConcatMd5 { Platform::String ^ get(); };
static winrt::hstring Sp80056aConcatMd5();
public static string Sp80056aConcatMd5 { get; }
var string = KeyDerivationAlgorithmNames.sp80056aConcatMd5;
Public Shared ReadOnly Property Sp80056aConcatMd5 As String
Property Value
String that contains "SP800_56A_CONCAT_MD5".
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 MD5 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.