Concept

KGT — Key Generation Time

KGT is the 15-minute time window that scopes every ASK in HexaEight. It is the Unix minute floored to the nearest 15.

Computing KGT

long nowMinutes = (long)(DateTime.UtcNow - DateTime.UnixEpoch).TotalMinutes;
long kgt        = nowMinutes - (nowMinutes % 15);

Why a window, not a moment?

Overriding KGT

Most code lets the Bridge pick "now." Pass an explicit KGT to EncryptEnvelopeAsync when re-encrypting historical data, replaying flows, or running deterministic tests.

See also