diff options
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' |