IVerifierIsVerified(Byte, Int32, Int32) Method

Return true if the length bytes from off in the source array match the signature expected by the verification result.

Definition

Namespace: Org.BouncyCastle.Crypto
Assembly: BouncyCastle.Cryptography (in BouncyCastle.Cryptography.dll) Version: 2.3.0-beta.187+d6da5648ae
bool IsVerified(
	byte[] source,
	int off,
	int length
)

Parameters

source  Byte
Byte array containing the signature.
off  Int32
The offset into the source array where the signature starts.
length  Int32
The number of bytes in source making up the signature.

Return Value

Boolean
true if the signature verifies, false otherwise.

See Also