PHP » PYTHON |
login |
register |
about
|
PYTHON openssl_verify
is this article helpful?
|
Python replacement for PHP's openssl_verify
[
edit
| history
]
from OpenSSL.crypto import verify
verify(...) Verify a signature @param cert: signing certificate (X509 object) @param signature: signature returned by sign function @param data: data to be verified @param digest: message digest to use @return: None if the signature is correct, raise exception otherwise e.g. verify(cert, sig, string, 'sha1') openssl_verify(PHP 4 >= 4.0.4, PHP 5) openssl_verify — Verify signature Descriptionopenssl_verify() verifies that the signature is correct for the specified data using the public key associated with pub_key_id . This must be the public key corresponding to the private key used for signing. Parameters
Return ValuesReturns 1 if the signature is correct, 0 if it is incorrect, and -1 on error. Changelog
Examples
Example #1 openssl_verify() example
<?php
|
more
Recently updated
more
Most requested
more
Last requests
|