diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2018-10-09 23:03:55 -0400 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2018-10-10 11:03:55 +0800 |
commit | 6460228b4651de8cdabf30f25335b9693e306c1f (patch) | |
tree | 4ac79318f8100916a460a21a1d70b53bb3356f29 | |
parent | 2a3c691975aafd7e80b8ba557c6631b2df867345 (diff) | |
download | cryptography-6460228b4651de8cdabf30f25335b9693e306c1f.tar.gz cryptography-6460228b4651de8cdabf30f25335b9693e306c1f.tar.bz2 cryptography-6460228b4651de8cdabf30f25335b9693e306c1f.zip |
Style nits for docs (#4494)
-rw-r--r-- | docs/x509/reference.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/x509/reference.rst b/docs/x509/reference.rst index 1ff23b3c..ef734f88 100644 --- a/docs/x509/reference.rst +++ b/docs/x509/reference.rst @@ -472,11 +472,11 @@ X.509 Certificate Object >>> issuer_public_key = load_pem_public_key(pem_issuer_public_key, default_backend()) >>> cert_to_check = x509.load_pem_x509_certificate(pem_data_to_check, default_backend()) >>> issuer_public_key.verify( - ... cert_to_check.signature, - ... cert_to_check.tbs_certificate_bytes, - ... #Depends on the algorithm used to create the certificate - ... padding.PKCS1v15(), - ... cert_to_check.signature_hash_algorithm, + ... cert_to_check.signature, + ... cert_to_check.tbs_certificate_bytes, + ... # Depends on the algorithm used to create the certificate + ... padding.PKCS1v15(), + ... cert_to_check.signature_hash_algorithm, ... ) An |