diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-07-04 16:26:58 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-07-04 16:26:58 -0500 |
commit | 8ea90ef486632b71736c53083a8d93134c96c2db (patch) | |
tree | f017d2dea905faf7ed35a0f5833da8d1f10b68d4 | |
parent | 4cfd01d783baead0fbf3916d963ef17030443351 (diff) | |
download | cryptography-8ea90ef486632b71736c53083a8d93134c96c2db.tar.gz cryptography-8ea90ef486632b71736c53083a8d93134c96c2db.tar.bz2 cryptography-8ea90ef486632b71736c53083a8d93134c96c2db.zip |
docs changes based on feedback
-rw-r--r-- | CHANGELOG.rst | 12 | ||||
-rw-r--r-- | docs/hazmat/primitives/asymmetric/dsa.rst | 2 | ||||
-rw-r--r-- | docs/hazmat/primitives/asymmetric/ec.rst | 2 | ||||
-rw-r--r-- | docs/hazmat/primitives/asymmetric/rsa.rst | 2 |
4 files changed, 6 insertions, 12 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4e95b285..82a3e5b6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -152,23 +152,17 @@ Changelog * Added :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKeyWithSerialization` and deprecated ``RSAPublicKeyWithNumbers``. -* Added - :meth:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey.public_bytes` - to +* Added ``public_bytes`` to :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKeyWithSerialization`. * Added :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKeyWithSerialization` and deprecated ``EllipticCurvePublicKeyWithNumbers``. -* Added - :meth:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey.public_bytes` - to +* Added ``public_bytes`` to :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKeyWithSerialization`. * Added :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPublicKeyWithSerialization` and deprecated ``DSAPublicKeyWithNumbers``. -* Added - :meth:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPublicKey.public_bytes` - to +* Added ``public_bytes`` to :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPublicKeyWithSerialization`. * :class:`~cryptography.hazmat.primitives.hashes.HashAlgorithm` and :class:`~cryptography.hazmat.primitives.hashes.HashContext` were moved from diff --git a/docs/hazmat/primitives/asymmetric/dsa.rst b/docs/hazmat/primitives/asymmetric/dsa.rst index d60fd882..2ceb7d7d 100644 --- a/docs/hazmat/primitives/asymmetric/dsa.rst +++ b/docs/hazmat/primitives/asymmetric/dsa.rst @@ -399,7 +399,7 @@ Key interfaces .. versionadded:: 0.8 - Alias of :class:`DSAPublicKey`. + Alias for :class:`DSAPublicKey`. .. _`DSA`: https://en.wikipedia.org/wiki/Digital_Signature_Algorithm diff --git a/docs/hazmat/primitives/asymmetric/ec.rst b/docs/hazmat/primitives/asymmetric/ec.rst index 4569f6d4..e0abe0ab 100644 --- a/docs/hazmat/primitives/asymmetric/ec.rst +++ b/docs/hazmat/primitives/asymmetric/ec.rst @@ -414,7 +414,7 @@ Key Interfaces .. versionadded:: 0.6 - Alias of :class:`EllipticCurvePublicKey`. + Alias for :class:`EllipticCurvePublicKey`. .. _`FIPS 186-3`: http://csrc.nist.gov/publications/fips/fips186-3/fips_186-3.pdf diff --git a/docs/hazmat/primitives/asymmetric/rsa.rst b/docs/hazmat/primitives/asymmetric/rsa.rst index affdaa88..e8bbf5ce 100644 --- a/docs/hazmat/primitives/asymmetric/rsa.rst +++ b/docs/hazmat/primitives/asymmetric/rsa.rst @@ -640,7 +640,7 @@ Key interfaces .. versionadded:: 0.8 - Alias of :class:`RSAPublicKey`. + Alias for :class:`RSAPublicKey`. .. _`RSA`: https://en.wikipedia.org/wiki/RSA_(cryptosystem) |