diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-10-17 09:52:04 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-10-21 22:40:37 -0500 |
commit | 42e029b66000ace57246fcec4cb72a5e18652487 (patch) | |
tree | a14bc813dc3d7dee1f10669bdaa0d8775ef8d250 | |
parent | cee3736564033cce48f39ab5653f3ba323da0e10 (diff) | |
download | cryptography-42e029b66000ace57246fcec4cb72a5e18652487.tar.gz cryptography-42e029b66000ace57246fcec4cb72a5e18652487.tar.bz2 cryptography-42e029b66000ace57246fcec4cb72a5e18652487.zip |
expand keywrap intro docs
-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) |