diff options
Diffstat (limited to 'docs/hazmat/primitives')
-rw-r--r-- | docs/hazmat/primitives/keywrap.rst | 6 |
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. |