aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/primitives/keywrap.rst
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-10-22 11:21:55 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-10-22 11:21:55 -0500
commit974e875492b750fbbb6505a761a0120f09ff34cc (patch)
tree5b12e04a507e234348af97aebcb6308653f44cf6 /docs/hazmat/primitives/keywrap.rst
parent42e029b66000ace57246fcec4cb72a5e18652487 (diff)
downloadcryptography-974e875492b750fbbb6505a761a0120f09ff34cc.tar.gz
cryptography-974e875492b750fbbb6505a761a0120f09ff34cc.tar.bz2
cryptography-974e875492b750fbbb6505a761a0120f09ff34cc.zip
add info about the rfc
Diffstat (limited to 'docs/hazmat/primitives/keywrap.rst')
-rw-r--r--docs/hazmat/primitives/keywrap.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/hazmat/primitives/keywrap.rst b/docs/hazmat/primitives/keywrap.rst
index 429e8928..e4f9ffeb 100644
--- a/docs/hazmat/primitives/keywrap.rst
+++ b/docs/hazmat/primitives/keywrap.rst
@@ -15,6 +15,9 @@ protections offered by key wrapping are also offered by using authenticated
.. versionadded:: 1.1
+ This function performs AES key wrap (without padding) as specified in
+ :rfc:`3394`.
+
:param bytes wrapping_key: The wrapping key.
:param bytes key_to_wrap: The key to wrap.
@@ -30,6 +33,9 @@ protections offered by key wrapping are also offered by using authenticated
.. versionadded:: 1.1
+ This function performs AES key unwrap (without padding) as specified in
+ :rfc:`3394`.
+
:param bytes wrapping_key: The wrapping key.
:param bytes wrapped_key: The wrapped key.