Crc32ModeSComputeChecksumBytesTraditional88 Method |
Calculates the four-byte parity on an 11 byte message using the traditional (slow) method
recommended by the Eurocontrol document '022_CRC_calculations_for_Mode_S'.
Namespace: VirtualRadar.InterfaceAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public byte[] ComputeChecksumBytesTraditional88(
byte[] bytes
)
Public Function ComputeChecksumBytesTraditional88 (
bytes As Byte()
) As Byte()
public:
array<unsigned char>^ ComputeChecksumBytesTraditional88(
array<unsigned char>^ bytes
)
member ComputeChecksumBytesTraditional88 :
bytes : byte[] -> byte[]
Parameters
- bytes
- Type: SystemByte
Return Value
Type:
ByteRemarks I've put this here for timing comparison tests. Don't use for live code.
See Also