]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man3/EVP_VerifyInit.pod
Update copyright year
[thirdparty/openssl.git] / doc / man3 / EVP_VerifyInit.pod
CommitLineData
f7173262
DSH
1=pod
2
3=head1 NAME
4
c952780c 5EVP_VerifyInit_ex,
d8652be0 6EVP_VerifyInit, EVP_VerifyUpdate, EVP_VerifyFinal_ex, EVP_VerifyFinal
c952780c 7- EVP signature verification functions
f7173262
DSH
8
9=head1 SYNOPSIS
10
11 #include <openssl/evp.h>
12
3811eed8
DSH
13 int EVP_VerifyInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type, ENGINE *impl);
14 int EVP_VerifyUpdate(EVP_MD_CTX *ctx, const void *d, unsigned int cnt);
d8652be0
MC
15 int EVP_VerifyFinal_ex(EVP_MD_CTX *ctx, const unsigned char *sigbuf,
16 unsigned int siglen, EVP_PKEY *pkey,
b4250010 17 OSSL_LIB_CTX *libctx, const char *propq);
e9b77246
BB
18 int EVP_VerifyFinal(EVP_MD_CTX *ctx, unsigned char *sigbuf, unsigned int siglen,
19 EVP_PKEY *pkey);
f7173262 20
3811eed8
DSH
21 int EVP_VerifyInit(EVP_MD_CTX *ctx, const EVP_MD *type);
22
f7173262
DSH
23=head1 DESCRIPTION
24
8c1cbc72 25The EVP signature verification routines are a high-level interface to digital
f7173262
DSH
26signatures.
27
0ab18e79
SL
28EVP_VerifyInit_ex() sets up verification context I<ctx> to use digest
29I<type> from ENGINE I<impl>. I<ctx> must be created by calling
25191fff 30EVP_MD_CTX_new() before calling this function.
f7173262 31
0ab18e79
SL
32EVP_VerifyUpdate() hashes I<cnt> bytes of data at I<d> into the
33verification context I<ctx>. This function can be called several times on the
34same I<ctx> to include additional data.
f7173262 35
d8652be0 36EVP_VerifyFinal_ex() verifies the data in I<ctx> using the public key
0ab18e79
SL
37I<pkey> and I<siglen> bytes in I<sigbuf>.
38The library context I<libctx> and property query I<propq> are used when creating
39a context to use with the key I<pkey>.
3811eed8 40
d8652be0 41EVP_VerifyFinal() is similar to EVP_VerifyFinal_ex() but uses default
0ab18e79
SL
42values of NULL for the library context I<libctx> and the property query I<propq>.
43
44EVP_VerifyInit() initializes verification context I<ctx> to use the default
45implementation of digest I<type>.
f7173262
DSH
46
47=head1 RETURN VALUES
48
3811eed8
DSH
49EVP_VerifyInit_ex() and EVP_VerifyUpdate() return 1 for success and 0 for
50failure.
f7173262 51
746f3674 52EVP_VerifyFinal_ex() and EVP_VerifyFinal() return 1 for a correct
0ab18e79 53signature, 0 for failure and -1 if some other error occurred.
f7173262 54
9b86974e 55The error codes can be obtained by L<ERR_get_error(3)>.
f7173262
DSH
56
57=head1 NOTES
58
59The B<EVP> interface to digital signatures should almost always be used in
8c1cbc72 60preference to the low-level interfaces. This is because the code then becomes
f7173262
DSH
61transparent to the algorithm used and much more flexible.
62
3811eed8
DSH
63The call to EVP_VerifyFinal() internally finalizes a copy of the digest context.
64This means that calls to EVP_VerifyUpdate() and EVP_VerifyFinal() can be called
65later to digest and verify additional data.
66
67Since only a copy of the digest context is ever finalized the context must
c12a2d27 68be cleaned up after use by calling EVP_MD_CTX_free() or a memory leak
3811eed8
DSH
69will occur.
70
f7173262
DSH
71=head1 BUGS
72
1bc74519 73Older versions of this documentation wrongly stated that calls to
3811eed8 74EVP_VerifyUpdate() could not be made after calling EVP_VerifyFinal().
f7173262 75
29cf84c6
DSH
76Since the public key is passed in the call to EVP_SignFinal() any error
77relating to the private key (for example an unsuitable key and digest
78combination) will not be indicated until after potentially large amounts of
79data have been passed through EVP_SignUpdate().
80
81It is not possible to change the signing parameters using these function.
82
3c9a8d4a 83The previous two bugs are fixed in the newer EVP_DigestVerify*() function.
29cf84c6 84
f7173262
DSH
85=head1 SEE ALSO
86
b97fdb57 87L<evp(7)>,
9b86974e 88L<EVP_SignInit(3)>,
73fb82b7 89L<EVP_DigestInit(3)>,
b97fdb57
RL
90L<evp(7)>, L<HMAC(3)>, L<MD2(3)>,
91L<MD5(3)>, L<MDC2(3)>, L<RIPEMD160(3)>,
1903a9b7 92L<SHA1(3)>, L<openssl-dgst(1)>
f7173262 93
c8511e89 94=head1 HISTORY
0ab18e79 95
d8652be0 96The function EVP_VerifyFinal_ex() was added in OpenSSL 3.0.
0ab18e79 97
e2f92610
RS
98=head1 COPYRIGHT
99
8020d79b 100Copyright 2000-2021 The OpenSSL Project Authors. All Rights Reserved.
e2f92610 101
4746f25a 102Licensed under the Apache License 2.0 (the "License"). You may not use
e2f92610
RS
103this file except in compliance with the License. You can obtain a copy
104in the file LICENSE in the source distribution or at
105L<https://www.openssl.org/source/license.html>.
106
107=cut