UtilChecksumComputeCRC64OfBytes Method
Computes a CRC-64 checksum for the specified byte array.
Namespace: DevCase.Core.Security.DataIntegrity.ChecksumAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static string ComputeCRC64OfBytes(
byte[] bytes
)
Public Shared Function ComputeCRC64OfBytes (
bytes As Byte()
) As String
Dim bytes As Byte()
Dim returnValue As String
returnValue = UtilChecksum.ComputeCRC64OfBytes(bytes)
public:
static String^ ComputeCRC64OfBytes(
array<unsigned char>^ bytes
)
static member ComputeCRC64OfBytes :
bytes : byte[] -> string
No code example is currently available or this language may not be supported.
- bytes Byte
-
The byte array.
String
An Hexadecimal representation of the resulting CRC-64 checksum.
This is a code example.
No code example is currently available or this language may not be supported.
Dim data as Byte() = {1, 2, 3, 4, 5}
Dim crc64 As String = ComputeCRC64OfBytes(data)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.