SignData - plug compatible with RSACryptoServiceProvider.SignData, but only this one override provided

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

Syntax

C#
public byte[] SignData(
	byte[] data,
	HashAlgorithm hasher
)
Visual Basic
Public Function SignData ( 
	data As Byte(),
	hasher As HashAlgorithm
) As Byte()
Visual C++
public:
array<unsigned char>^ SignData(
	array<unsigned char>^ data, 
	HashAlgorithm^ hasher
)
F#
member SignData : 
        data : byte[] * 
        hasher : HashAlgorithm -> byte[] 

Parameters

data
Type: array<System..::..Byte>[]()[][]
hasher
Type: System.Security.Cryptography..::..HashAlgorithm

Return Value

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

See Also