UtilEncryptionStairsDeCrypt(Byte, Byte) Method
Decrypts data using Polymorphic Stairs algorithm.
Namespace: DevCase.Core.Security.Cryptography.EncryptionAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static byte[] StairsDeCrypt(
byte[] data,
byte[] key
)
Public Shared Function StairsDeCrypt (
data As Byte(),
key As Byte()
) As Byte()
Dim data As Byte()
Dim key As Byte()
Dim returnValue As Byte()
returnValue = UtilEncryption.StairsDeCrypt(data,
key)
public:
static array<unsigned char>^ StairsDeCrypt(
array<unsigned char>^ data,
array<unsigned char>^ key
)
static member StairsDeCrypt :
data : byte[] *
key : byte[] -> byte[]
No code example is currently available or this language may not be supported.
- data Byte
-
The data to decrypt.
- key Byte
-
The decryption key.
Byte
The decrypted data.