diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-29 13:35:57 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-29 13:35:57 -0700 |
commit | f0bec9c3efe7f6def1b9b4ae53f0278e7cfbadba (patch) | |
tree | 1167ccdd16dacacf4d0c6fe84cdc42ab8fa6e6d3 | |
parent | 22e2eaee0b48318c3a3e5eda7ce9174ac8cfce6a (diff) | |
download | cryptography-f0bec9c3efe7f6def1b9b4ae53f0278e7cfbadba.tar.gz cryptography-f0bec9c3efe7f6def1b9b4ae53f0278e7cfbadba.tar.bz2 cryptography-f0bec9c3efe7f6def1b9b4ae53f0278e7cfbadba.zip |
Remove removed methods from docs
-rw-r--r-- | docs/hazmat/primitives/padding.rst | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/docs/hazmat/primitives/padding.rst b/docs/hazmat/primitives/padding.rst index 1ad2bb83..4b05acd1 100644 --- a/docs/hazmat/primitives/padding.rst +++ b/docs/hazmat/primitives/padding.rst @@ -37,16 +37,6 @@ multiple of the block size. :param block_size: The size of the block in bits that the data is being padded to. - .. method:: pad(data) - - :param data: The data that should be padded. - :rtype bytes: The padded data. - - .. method:: unpad(data) - - :param data: The data that should be unpadded. - :rtype bytes: The unpadded data. - .. method:: padder() :returns: A padding |