#aes-key #aes #encryption-key #aes-kw #keywrap #crypto

no-std aes-keywrap

AES Key Wrap construction (AES-KW, RFC 3394 / RFC 5649)

7 releases

0.2.5 Feb 8, 2023
0.2.4 Feb 11, 2022
0.2.3 May 27, 2021
0.2.2 Apr 30, 2021
0.1.0 Oct 13, 2020

#2007 in Cryptography

Download history 12/week @ 2024-01-13 2/week @ 2024-01-20 17/week @ 2024-02-03 23/week @ 2024-02-17 77/week @ 2024-02-24 56/week @ 2024-03-02 28/week @ 2024-03-09 40/week @ 2024-03-16 109/week @ 2024-03-23 70/week @ 2024-03-30 41/week @ 2024-04-06 39/week @ 2024-04-13

264 downloads per month

MIT license

13KB
280 lines

AES Key Wrap for Rust

AES Key Wrap is a construction to encrypt secret keys using a master key.

This is an AES-KWP (NIST SP800-38F) implementation for Rust.

It is essentially a 5 round Feistel network using AES as the core function. One half of each AES block is used to encrypt the key, and the second half of the last permutation is used to compute a 64-bit MAC.

It doesn't require nonces, but still allows key reuse.

This is a NIST-blessed construction. Other than that, AES Key Wrap is inefficient and is generally not very useful.

Dependencies

~705KB
~16K SLoC