diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-04-07 21:44:57 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-04-20 16:53:03 -0500 |
commit | e1c89f3d25c381f945db9de45c4782b123b7fe49 (patch) | |
tree | a1bbb103100724a4960e6b47c93ad9738f2c8988 /docs | |
parent | 52fb0a2b1d1a13a4b11d191be3c72dc86ac34575 (diff) | |
download | cryptography-e1c89f3d25c381f945db9de45c4782b123b7fe49.tar.gz cryptography-e1c89f3d25c381f945db9de45c4782b123b7fe49.tar.bz2 cryptography-e1c89f3d25c381f945db9de45c4782b123b7fe49.zip |
update docs for OAEP
Diffstat (limited to 'docs')
-rw-r--r-- | docs/hazmat/primitives/asymmetric/padding.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/hazmat/primitives/asymmetric/padding.rst b/docs/hazmat/primitives/asymmetric/padding.rst index 0c2f7ce7..06bd2c42 100644 --- a/docs/hazmat/primitives/asymmetric/padding.rst +++ b/docs/hazmat/primitives/asymmetric/padding.rst @@ -22,8 +22,8 @@ Padding :param mgf: A mask generation function object. At this time the only supported MGF is :class:`MGF1`. - :param bytes label: A label to apply. This is a rarely used field and many - backends do not support it. + :param bytes label: A label to apply. This is a rarely used field and + should typically be set to ``None`` or ``b""`` (equivalent values). .. class:: PSS(mgf, salt_length) |