diff options
-rw-r--r-- | docs/hazmat/primitives/keywrap.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/hazmat/primitives/keywrap.rst b/docs/hazmat/primitives/keywrap.rst index 1b49a4c5..429e8928 100644 --- a/docs/hazmat/primitives/keywrap.rst +++ b/docs/hazmat/primitives/keywrap.rst @@ -6,7 +6,10 @@ Key wrapping ============ Key wrapping is a cryptographic construct that uses symmetric encryption to -encapsulate key material. +encapsulate key material. Key wrapping algorithms are occasionally utilized +to protect keys at rest or transmit them over insecure networks. Many of the +protections offered by key wrapping are also offered by using authenticated +:doc:`symmetric encryption </hazmat/primitives/symmetric-encryption>`. .. function:: aes_key_wrap(wrapping_key, key_to_wrap, backend) |