diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-29 11:18:23 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-29 11:18:23 -0700 |
commit | 07082782db43d697627f6eaf2d0b7c8ca209ab6a (patch) | |
tree | 274ba4e3682e0e522a3b725a29dc49e478eaa850 /docs/hazmat/primitives | |
parent | b2d5efdc5a6e7f6df635b4bc60882bb2e5f14a66 (diff) | |
download | cryptography-07082782db43d697627f6eaf2d0b7c8ca209ab6a.tar.gz cryptography-07082782db43d697627f6eaf2d0b7c8ca209ab6a.tar.bz2 cryptography-07082782db43d697627f6eaf2d0b7c8ca209ab6a.zip |
typo
Diffstat (limited to 'docs/hazmat/primitives')
-rw-r--r-- | docs/hazmat/primitives/padding.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/hazmat/primitives/padding.rst b/docs/hazmat/primitives/padding.rst index ebcc6104..7cbadeb9 100644 --- a/docs/hazmat/primitives/padding.rst +++ b/docs/hazmat/primitives/padding.rst @@ -26,7 +26,7 @@ multiple of the block size. .. doctest:: - >>> from cryptography.primitives import padding + >>> from cryptography.hazmat.primitives import padding >>> padder = padding.PKCS7(128) >>> padder.pad(b"1111111111") '1111111111\x06\x06\x06\x06\x06\x06' |