ratchet method

void ratchet(
  1. int length
)

Ratchet the Strobe protocol state to enhance security.

Parameters:

  • length: The length of the key material to derive during the ratchet operation.

Implementation

void ratchet(int length) {
  operate(false, StrobeOperation.ratchet, List.empty(), length, false);
}