diff options
author | Cédric Krier <ced@b2ck.com> | 2016-03-15 14:35:19 +0100 |
---|---|---|
committer | Cédric Krier <ced@b2ck.com> | 2016-03-15 14:35:19 +0100 |
commit | 6cfd9192b7c76dce2979e72f77fae2d653d58ebe (patch) | |
tree | 0cac1e7b7d4774e75c9a2f128f10735b1a602231 /docs | |
parent | 288027ee43494eff37ee2c558b3683ea94c769ff (diff) | |
download | cryptography-6cfd9192b7c76dce2979e72f77fae2d653d58ebe.tar.gz cryptography-6cfd9192b7c76dce2979e72f77fae2d653d58ebe.tar.bz2 cryptography-6cfd9192b7c76dce2979e72f77fae2d653d58ebe.zip |
Add version in the doc
Diffstat (limited to 'docs')
-rw-r--r-- | docs/hazmat/primitives/padding.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/hazmat/primitives/padding.rst b/docs/hazmat/primitives/padding.rst index 475976af..0b76327e 100644 --- a/docs/hazmat/primitives/padding.rst +++ b/docs/hazmat/primitives/padding.rst @@ -56,6 +56,8 @@ multiple of the block size. .. class:: ANSIX923(block_size) + .. versionadded:: 1.3 + `ANSI X.923`_ padding works by appending ``N-1`` bytes with the value of ``0`` and a last byte with the value of ``chr(N)``, where ``N`` is the number of bytes required to make the final block of data the same size as |