clampKey static method

Uint8List clampKey(
  1. Uint8List bytes
)
override

Implementation

static Uint8List clampKey(Uint8List bytes) {
  bytes = ExtendedSigningKey.clampKey(bytes, keyLength);
  // clear the 3rd bit
  bytes[31] &= 0xDF;
  return bytes;
}