Decrypt a message in PKCS#1 v1.5 format Plug compatible with RSACryptoServiceProvider.Decrypt

Namespace: MonoSoftware.Core.Cryptography
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public byte[] Decrypt(
	byte[] input,
	bool fOAEP
)
Visual Basic
Public Function Decrypt ( 
	input As Byte(),
	fOAEP As Boolean
) As Byte()
Visual C++
public:
array<unsigned char>^ Decrypt(
	array<unsigned char>^ input, 
	bool fOAEP
)
F#
member Decrypt : 
        input : byte[] * 
        fOAEP : bool -> byte[] 

Parameters

input
Type: array<System..::..Byte>[]()[][]
Encrypted message
fOAEP
Type: System..::..Boolean

Return Value

Type: array<Byte>[]()[][]
Decrypted message

See Also