decode static method

Implementation

static XdrHmacSha256Mac decode(XdrDataInputStream stream) {
  int keySize = 32;
  return XdrHmacSha256Mac(stream.readBytes(keySize));
}