@Override
 public long hashByte(byte input) {
   int unsignedByte = Primitives.unsignedByte(input);
   long hash = hash1To3Bytes(1, unsignedByte, unsignedByte, unsignedByte);
   return finalizeHash(hash);
 }