[Missing <summary> documentation for "M:BasicCard.Crypto.Messaging.OmacFactory.CompareOmac(System.Byte[],System.Byte[],System.Int32,System.Int32)"]

Namespace: BasicCard.Crypto.Messaging
Assembly: BasicCard (in BasicCard.dll) Version: 2.5.2.0 (2.5.2.0)

Syntax

C#
public static bool CompareOmac(
	byte[] omac,
	byte[] verify,
	int verifyStart,
	int verifyLen
)
Visual Basic
Public Shared Function CompareOmac ( 
	omac As Byte(),
	verify As Byte(),
	verifyStart As Integer,
	verifyLen As Integer
) As Boolean
Visual C++
public:
static bool CompareOmac(
	array<unsigned char>^ omac, 
	array<unsigned char>^ verify, 
	int verifyStart, 
	int verifyLen
)
F#
static member CompareOmac : 
        omac : byte[] * 
        verify : byte[] * 
        verifyStart : int * 
        verifyLen : int -> bool 

Parameters

omac
Type: array<System..::..Byte>[]()[][]
First omac.
verify
Type: array<System..::..Byte>[]()[][]
Second omac to compare with.
verifyStart
Type: System..::..Int32
Position of first omac byte in verify.
verifyLen
Type: System..::..Int32
Length of omac in verify.

Return Value

Type: Boolean
True if equal, false if not equal.

See Also