diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-02-16 12:33:37 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-02-16 12:33:37 -0800 |
commit | 426eee7e732f90f04740e055381f0b37dadc2df1 (patch) | |
tree | 61540da76f61fa12fd15e2ba099a4d66f9391dfb /docs/hazmat/backends | |
parent | 99c1b803aeb2260d8dbc131aca608276a714285c (diff) | |
parent | a308f9f9fad845da1d1492ce8e4e37d68f3bfcfc (diff) | |
download | cryptography-426eee7e732f90f04740e055381f0b37dadc2df1.tar.gz cryptography-426eee7e732f90f04740e055381f0b37dadc2df1.tar.bz2 cryptography-426eee7e732f90f04740e055381f0b37dadc2df1.zip |
Merge pull request #1665 from reaperhulk/move-asym-padding-interface
move asymmetric padding interface to primitives.asymmetric.padding
Diffstat (limited to 'docs/hazmat/backends')
-rw-r--r-- | docs/hazmat/backends/interfaces.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/hazmat/backends/interfaces.rst b/docs/hazmat/backends/interfaces.rst index 407140bd..0ce8f5f7 100644 --- a/docs/hazmat/backends/interfaces.rst +++ b/docs/hazmat/backends/interfaces.rst @@ -244,7 +244,7 @@ A specific ``backend`` may provide one or more of these interfaces. Check if the specified ``padding`` is supported by the backend. :param padding: An instance of an - :class:`~cryptography.hazmat.primitives.interfaces.AsymmetricPadding` + :class:`~cryptography.hazmat.primitives.asymmetric.padding.AsymmetricPadding` provider. :returns: ``True`` if the specified ``padding`` is supported by this |