Commit 9fbe0a7f authored by chiaming2000's avatar chiaming2000
Browse files

Update protocol to support both CRC32 and CRC32C algorithm.

parent 1fc74895
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -678,9 +678,9 @@ message Command {
		SHA1 = 1; // see NIST
		SHA2 = 2; // see NIST
		SHA3 = 3; // see NIST. The length of the tag determined the length of the hash
		CRC32C = 4; // CRC32C
		CRC64 = 5; // CRC64
		CRC32 = 6; // the CRC32 is the standard Ethernet CRC32. See IEEE
		CRC32C = 4;
		CRC64 = 5;
		CRC32 = 6;
		// 7-99 are reserved.
		// 100-inf are private algorithms.
	}