Skip to content

Commit

Permalink
Merge pull request #39 from Kinetic/features/crc32-crc32c
Browse files Browse the repository at this point in the history
Features/crc32 crc32c
  • Loading branch information
chiaming2000 committed Apr 25, 2016
2 parents 122d1e7 + 9fbe0a7 commit a66ca2c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions kinetic.proto
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ option java_outer_classname = "Kinetic";
// the protocol version number by building this message
// and then reading the value.
message Local {
optional string protocolVersion = 1 [default = "3.0.6"];
optional string protocolVersion = 1 [default = "3.0.7"];
}

// THe message is an authorization and command bytes.
Expand Down Expand Up @@ -678,8 +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
CRC32 = 4; // the CRC32 is the standard Ethernet CRC32. See IEEE
CRC64 = 5; // The CRC is ...
CRC32C = 4;
CRC64 = 5;
CRC32 = 6;
// 7-99 are reserved.
// 100-inf are private algorithms.
}
Expand Down

0 comments on commit a66ca2c

Please sign in to comment.