AES Key Wrap (KW)
A NIST-standardised key-wrapping algorithm (SP 800-38F, RFC 3394) used to protect symmetric keys with another symmetric key. SkyeConnex uses AES Key Wrap to wrap per-file Data Encryption Keys with the User Master Key.
What key wrapping solves
Storing or transmitting a symmetric key alongside the data it protects creates an obvious problem: anyone who can read the file metadata can read the key. Key wrapping protects the symmetric key by encrypting it with a different (usually higher-privilege) symmetric key — the wrap key. The wrapped key is safe to store with the file metadata; only a holder of the wrap key can recover the data key.
Why AES Key Wrap specifically
Most "encrypt a key with a key" patterns require an IV. AES Key Wrap is deterministic and IV-free — you cannot accidentally weaken it by reusing an IV. It is FIPS-approved (SP 800-38F) and used throughout NIST cryptographic standards. SkyeConnex's choice of AES-KW is partly about correctness-by-construction: there's no IV mistake to make.
SkyeConnex's wrap chain
Every file's Data Encryption Key (DEK) is wrapped with AES Key Wrap using the User Master Key (UMK). The wrapped DEK is stored with file metadata; it is recoverable only by a holder of the unwrapped UMK. The UMK itself is derived on the client from the user's password (via scrypt) or recovery key. On the Sovereign tier, the wrapping is composed with ML-KEM-1024 for hybrid post-quantum protection.
Why hybrid wrap matters
A pure post-quantum wrap relies entirely on the security of the new lattice-based algorithms. A pure classical wrap relies entirely on AES surviving quantum computers. The hybrid composition — AES Key Wrap combined with ML-KEM-1024 — means an adversary must defeat both to recover the wrapped key. A quantum break against ML-KEM still leaves AES standing.
Operationally
AES Key Wrap is fast — at typical key sizes (256 bits), wrapping is a single-digit microsecond operation. It does not appear in any read-path latency budget. The complexity SkyeConnex manages is around when wraps are computed, not how fast they are.
Related terms
See also
Posts that mention AES Key Wrap (KW)
FIPS 203 and FIPS 204 explained: what NIST's PQ standards mean for procurement
NIST finalised both post-quantum standards in August 2024. ML-KEM-1024 (FIPS 203) and ML-DSA-87 (FIPS 204). Here's what procurement teams sh…
Read → Cryptography · 6 min readPost-quantum cryptography: SkyeConnex already ships both halves
ML-KEM-1024 (FIPS 203) addresses the key-encapsulation half of post-quantum migration. ML-DSA-87 (FIPS 204) addresses the signature half. Sk…
Read → Cryptography · 7 min readQuantum 'harvest now, decrypt later': the timeline that actually matters
'We'll worry about quantum when it happens' is the wrong frame. Adversaries are harvesting encrypted traffic today, betting on decryption to…
Read →