GeneralFunctions.DecryptStringFromBytes(Byte[], Byte[], Byte[]) Method
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.
Caution
This method has been deprecated.
Decrypts the given text using symmetric Rijndael algorithm.
public:
static System::String ^ DecryptStringFromBytes(cli::array <System::Byte> ^ cipherText, cli::array <System::Byte> ^ Key, cli::array <System::Byte> ^ IV);
[System.Obsolete("This method has been deprecated.", true)]
public static string DecryptStringFromBytes (byte[] cipherText, byte[] Key, byte[] IV);
[<System.Obsolete("This method has been deprecated.", true)>]
static member DecryptStringFromBytes : byte[] * byte[] * byte[] -> string
Public Shared Function DecryptStringFromBytes (cipherText As Byte(), Key As Byte(), IV As Byte()) As String
Parameters
- cipherText
- Byte[]
Specifies the text to be decrypted.
- Key
- Byte[]
Specifeis the value of the key to be used for decryption.
- IV
- Byte[]
Specifies the initialization Vector to be used for decryption
Returns
String representing decrypted form of cipher text
- Attributes