Perform an RSA private key operation on input

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

Syntax

C#
public byte[] DoPrivate(
	byte[] input
)
Visual Basic
Public Function DoPrivate ( 
	input As Byte()
) As Byte()
Visual C++
public:
array<unsigned char>^ DoPrivate(
	array<unsigned char>^ input
)
F#
member DoPrivate : 
        input : byte[] -> byte[] 

Parameters

input
Type: array<System..::..Byte>[]()[][]
Input byte array

Return Value

Type: array<Byte>[]()[][]
Result of the private key operation

See Also