From 6460228b4651de8cdabf30f25335b9693e306c1f Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Tue, 9 Oct 2018 23:03:55 -0400 Subject: Style nits for docs (#4494) --- docs/x509/reference.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'docs/x509') 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 -- cgit v1.2.3