[Missing <summary> documentation for "M:BasicCard.Crypto.Messaging.Eax.CompareTag(System.Byte[],System.Byte[],System.Int32,System.Int32)"]
Namespace: BasicCard.Crypto.MessagingAssembly: BasicCard (in BasicCard.dll) Version: 2.5.2.0 (2.5.2.0)
Syntax
C# |
---|
public static bool CompareTag(
byte[] tag,
byte[] verify,
int verifyStart,
int verifyLen
) |
Visual Basic |
---|
Public Shared Function CompareTag (
tag As Byte(),
verify As Byte(),
verifyStart As Integer,
verifyLen As Integer
) As Boolean |
Visual C++ |
---|
public:
static bool CompareTag(
array<unsigned char>^ tag,
array<unsigned char>^ verify,
int verifyStart,
int verifyLen
) |
F# |
---|
static member CompareTag :
tag : byte[] *
verify : byte[] *
verifyStart : int *
verifyLen : int -> bool
|
Parameters
- tag
- Type: array<System..::..Byte>[]()[][]
First tag.
- verify
- Type: array<System..::..Byte>[]()[][]
Second tag 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:
BooleanTrue if equal, false if not equal.
See Also