summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/doc/EVP_VerifyInit.pod
diff options
context:
space:
mode:
authorbeck <>2000-12-15 02:58:47 +0000
committerbeck <>2000-12-15 02:58:47 +0000
commit9200bb13d15da4b2a23e6bc92c20e95b74aa2113 (patch)
tree5c52d628ec1e34be76e7ef2a4235d248b7c44d24 /src/lib/libcrypto/doc/EVP_VerifyInit.pod
parente131d25072e3d4197ba4b9bcc0d1b27d34d6488d (diff)
downloadopenbsd-9200bb13d15da4b2a23e6bc92c20e95b74aa2113.tar.gz
openbsd-9200bb13d15da4b2a23e6bc92c20e95b74aa2113.tar.bz2
openbsd-9200bb13d15da4b2a23e6bc92c20e95b74aa2113.zip
openssl-engine-0.9.6 merge
Diffstat (limited to 'src/lib/libcrypto/doc/EVP_VerifyInit.pod')
-rw-r--r--src/lib/libcrypto/doc/EVP_VerifyInit.pod15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/lib/libcrypto/doc/EVP_VerifyInit.pod b/src/lib/libcrypto/doc/EVP_VerifyInit.pod
index 5e74c5dcf9..736a0f4a82 100644
--- a/src/lib/libcrypto/doc/EVP_VerifyInit.pod
+++ b/src/lib/libcrypto/doc/EVP_VerifyInit.pod
@@ -17,17 +17,17 @@ EVP_VerifyInit, EVP_VerifyUpdate, EVP_VerifyFinal - EVP signature verification f
17The EVP signature verification routines are a high level interface to digital 17The EVP signature verification routines are a high level interface to digital
18signatures. 18signatures.
19 19
20EVP_VerifyInit() initialises a verification context B<ctx> to using digest 20EVP_VerifyInit() initializes a verification context B<ctx> to using digest
21B<type>: this will typically be supplied by a function such as EVP_sha1(). 21B<type>: this will typically be supplied by a function such as EVP_sha1().
22 22
23EVP_VerifyUpdate() hashes B<cnt> bytes of data at B<d> into the 23EVP_VerifyUpdate() hashes B<cnt> bytes of data at B<d> into the
24verification context B<ctx>. This funtion can be called several times on the 24verification context B<ctx>. This function can be called several times on the
25same B<ctx> to include additional data. 25same B<ctx> to include additional data.
26 26
27EVP_VerifyFinal() verifies the data in B<ctx> using the public key B<pkey> 27EVP_VerifyFinal() verifies the data in B<ctx> using the public key B<pkey>
28and against the B<siglen> bytes at B<sigbuf>. After calling EVP_VerifyFinal() 28and against the B<siglen> bytes at B<sigbuf>. After calling EVP_VerifyFinal()
29no additional calls to EVP_VerifyUpdate() can be made, but EVP_VerifyInit() 29no additional calls to EVP_VerifyUpdate() can be made, but EVP_VerifyInit()
30can be called to initialiase a new verification operation. 30can be called to initialize a new verification operation.
31 31
32=head1 RETURN VALUES 32=head1 RETURN VALUES
33 33
@@ -57,11 +57,12 @@ might.
57 57
58=head1 SEE ALSO 58=head1 SEE ALSO
59 59
60L<evp(3)|evp(3)>,
60L<EVP_SignInit(3)|EVP_SignInit(3)>, 61L<EVP_SignInit(3)|EVP_SignInit(3)>,
61L<EVP_DigestInit(3)|EVP_DigestInit(3)>, L<ERR_get_error(3)|ERR_get_error(3)>, 62L<EVP_DigestInit(3)|EVP_DigestInit(3)>, L<err(3)|err(3)>,
62L<evp(3)|evp(3)>, L<HMAC(3)|HMAC(3)>, L<MD2(3)|MD2(3)>, 63L<evp(3)|evp(3)>, L<hmac(3)|hmac(3)>, L<md2(3)|md2(3)>,
63L<MD5(3)|MD5(3)>, L<MDC2(3)|MDC2(3)>, L<RIPEMD(3)|RIPEMD(3)>, 64L<md5(3)|md5(3)>, L<mdc2(3)|mdc2(3)>, L<ripemd(3)|ripemd(3)>,
64L<SHA1(3)|SHA1(3)>, L<digest(1)|digest(1)> 65L<sha(3)|sha(3)>, L<digest(1)|digest(1)>
65 66
66=head1 HISTORY 67=head1 HISTORY
67 68