diff options
| author | Vincent Pelletier <plr.vincent@gmail.com> | 2017-08-12 22:05:00 +0900 | 
|---|---|---|
| committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2017-08-12 08:05:00 -0500 | 
| commit | 6c02ee85bcd68e1e4fc6770421699fbd07c9b3e9 (patch) | |
| tree | 5bfb5a0966cd3e00810b0161276e26aac8fdf3bb /docs/x509 | |
| parent | ca941bd00baa598cb83d91a4e88b4bbcec0fc265 (diff) | |
| download | cryptography-6c02ee85bcd68e1e4fc6770421699fbd07c9b3e9.tar.gz cryptography-6c02ee85bcd68e1e4fc6770421699fbd07c9b3e9.tar.bz2 cryptography-6c02ee85bcd68e1e4fc6770421699fbd07c9b3e9.zip | |
Add is_signature_valid method on CertificateRevocationList (#3849)
Diffstat (limited to 'docs/x509')
| -rw-r--r-- | docs/x509/reference.rst | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/docs/x509/reference.rst b/docs/x509/reference.rst index 8b976119..47f76254 100644 --- a/docs/x509/reference.rst +++ b/docs/x509/reference.rst @@ -563,6 +563,12 @@ X.509 CRL (Certificate Revocation List) Object              over the network and used as part of a certificate verification              process. +    .. method:: is_signature_valid(public_key) + +        .. versionadded:: 2.1 + +        Returns True if the CRL signature is correct for given public key, +        False otherwise.  X.509 Certificate Builder  ~~~~~~~~~~~~~~~~~~~~~~~~~ | 
