Edit

Share via


Aes.DecryptKeyWrapPadded Method

Definition

Overloads

DecryptKeyWrapPadded(Byte[])

public:
 cli::array <System::Byte> ^ DecryptKeyWrapPadded(cli::array <System::Byte> ^ ciphertext);
public byte[] DecryptKeyWrapPadded(byte[] ciphertext);
member this.DecryptKeyWrapPadded : byte[] -> byte[]
Public Function DecryptKeyWrapPadded (ciphertext As Byte()) As Byte()

Parameters

ciphertext
Byte[]

Returns

Byte[]

Applies to

DecryptKeyWrapPadded(ReadOnlySpan<Byte>)

public:
 cli::array <System::Byte> ^ DecryptKeyWrapPadded(ReadOnlySpan<System::Byte> ciphertext);
public byte[] DecryptKeyWrapPadded(ReadOnlySpan<byte> ciphertext);
member this.DecryptKeyWrapPadded : ReadOnlySpan<byte> -> byte[]
Public Function DecryptKeyWrapPadded (ciphertext As ReadOnlySpan(Of Byte)) As Byte()

Parameters

ciphertext
ReadOnlySpan<Byte>

Returns

Byte[]

Applies to

DecryptKeyWrapPadded(ReadOnlySpan<Byte>, Span<Byte>)

public:
 int DecryptKeyWrapPadded(ReadOnlySpan<System::Byte> ciphertext, Span<System::Byte> destination);
public int DecryptKeyWrapPadded(ReadOnlySpan<byte> ciphertext, Span<byte> destination);
member this.DecryptKeyWrapPadded : ReadOnlySpan<byte> * Span<byte> -> int
Public Function DecryptKeyWrapPadded (ciphertext As ReadOnlySpan(Of Byte), destination As Span(Of Byte)) As Integer

Parameters

ciphertext
ReadOnlySpan<Byte>
destination
Span<Byte>

Returns

Applies to