SymmetricAlgorithmNames.AesEcb Property

Definition

Retrieves a string that contains "AES_ECB".

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

Property Value

String

Platform::String

winrt::hstring

String that contains "AES_ECB".

Remarks

Use the string retrieved by this property to set the symmetric encryption algorithm name when you call the OpenAlgorithm method on a SymmetricKeyAlgorithmProvider object. The string represents the Advanced Encryption Standard (AES) algorithm coupled with an electronic codebook (ECB) mode of operation.

Applies to

See also