RSA.DecryptValue(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.
When overridden in a derived class, decrypts the input data using the private key.
public:
abstract cli::array <System::Byte> ^ DecryptValue(cli::array <System::Byte> ^ rgb);
public:
virtual cli::array <System::Byte> ^ DecryptValue(cli::array <System::Byte> ^ rgb);
public abstract byte[] DecryptValue(byte[] rgb);
public virtual byte[] DecryptValue(byte[] rgb);
abstract member DecryptValue : byte[] -> byte[]
abstract member DecryptValue : byte[] -> byte[]
override this.DecryptValue : byte[] -> byte[]
Public MustOverride Function DecryptValue (rgb As Byte()) As Byte()
Public Overridable Function DecryptValue (rgb As Byte()) As Byte()
Parameters
- rgb
- Byte[]
The cipher text to be decrypted.
Returns
The resulting decryption of the rgb parameter in plain text.
Exceptions
This method call is not supported. This exception is thrown starting with the .NET Framework 4.6.
Remarks
In the .NET Framework 4.5.2 and earlier versions of the .NET Framework, this method was abstract. However, the only implementation by a derived class, RSACryptoServiceProvider.DecryptValue, also threw a NotSupportedException exception.