Key Rotation
Pronunciation: kee roh-TAY-shuhn
Also known as: Cryptographic Key Rotation
Definition
Key rotation is the planned replacement of an active cryptographic key with a new key while preserving service continuity and authorization. Rotation limits exposure from long-lived keys, supports policy changes, and provides a controlled response to suspected compromise. In blockchain systems, it can require an on-chain authority update, validator-key transition, multisignature change, or transfer of assets to a new account. Rotation must address overlap, rollback, and dependent services.
Overview
Key rotation replaces one active key with another according to a scheduled or emergency process. The old and new keys may overlap briefly so systems can update without downtime, or the change may occur atomically at a defined block or transaction. A successful rotation updates every place where the public key, address, signer policy, or trust relationship is referenced.
The mechanism depends on account design. A configurable Account Authority can authorize a new key directly, while a fixed-address system may require moving funds or permissions to another account. Validators may separate identity, consensus, and withdrawal keys, each with different rotation rules. Multisignature systems can replace one signer without changing the entire policy if the contract or account supports it.
Rotation is distinct from Key Revocation. Rotation establishes the successor key and continuity plan; revocation declares that the old key should no longer be trusted. A routine rotation may keep the old key valid for a controlled overlap, whereas compromise response should minimize or eliminate that period. Both processes need authenticated records and rollback protection.
Operational preparation includes generating the replacement securely, verifying its public identifier, updating signers and monitoring, testing recovery, and confirming the final on-chain state. Teams should track key age, owners, purpose, storage device, and next rotation date. Automatic rotation is useful only when dependencies can consume the change safely; otherwise it can cause signing failures or loss of access.
Key Rotation should be evaluated against the target network’s actual rules, not a familiar label from another system. In this case, a coordinated authority transition, not merely generation of a new key, and must update every dependent verifier and signer. The supporting evidence for Key Rotation should remain available for review, including the relevant block, transaction, state, or key records.
Key Takeaway
Key rotation is a coordinated authority transition, not merely generation of a new key, and must update every dependent verifier and signer.
Sources
- Recommendation for Key Management: Part 1 — NIST (2026-08-02)
- Root Zone KSK Ceremonies — IANA (2026-08-02)