Expand the XTS documentation
[openssl.git] / doc / man3 / EVP_PKEY_get_default_digest_nid.pod
1 =pod
2
3 =head1 NAME
4
5 EVP_PKEY_get_default_digest_nid, EVP_PKEY_get_default_digest_name
6 - get default signature digest
7
8 =head1 SYNOPSIS
9
10  #include <openssl/evp.h>
11
12  int EVP_PKEY_get_default_digest_name(EVP_PKEY *pkey,
13                                       char *mdname, size_t mdname_sz)
14  int EVP_PKEY_get_default_digest_nid(EVP_PKEY *pkey, int *pnid);
15
16 =head1 DESCRIPTION
17
18 EVP_PKEY_get_default_digest_name() fills in the default message digest
19 name for the public key signature operations associated with key
20 I<pkey> into I<mdname>, up to at most I<mdname_sz> bytes including the
21 ending NUL byte.
22
23 EVP_PKEY_get_default_digest_nid() sets I<pnid> to the default message
24 digest NID for the public key signature operations associated with key
25 I<pkey>.  Note that some signature algorithms (i.e. Ed25519 and Ed448)
26 do not use a digest during signing.  In this case I<pnid> will be set
27 to NID_undef.  This function is only reliable for legacy keys, which
28 are keys with a B<EVP_PKEY_ASN1_METHOD>; these keys have typically
29 been loaded from engines, or created with L<EVP_PKEY_assign_RSA(3)> or
30 similar.
31
32 =head1 NOTES
33
34 For all current standard OpenSSL public key algorithms SHA256 is returned.
35
36 =head1 RETURN VALUES
37
38 EVP_PKEY_get_default_digest_name() and EVP_PKEY_get_default_digest_nid()
39 both return 1 if the message digest is advisory (that is other digests
40 can be used) and 2 if it is mandatory (other digests can not be used).
41 They return 0 or a negative value for failure.  In particular a return
42 value of -2 indicates the operation is not supported by the public key
43 algorithm.
44
45 =head1 SEE ALSO
46
47 L<EVP_PKEY_CTX_new(3)>,
48 L<EVP_PKEY_sign(3)>,
49 L<EVP_PKEY_supports_digest_nid(3)>,
50 L<EVP_PKEY_verify(3)>,
51 L<EVP_PKEY_verify_recover(3)>,
52
53 =head1 HISTORY
54
55 This function was added in OpenSSL 1.0.0.
56
57 =head1 COPYRIGHT
58
59 Copyright 2006-2018 The OpenSSL Project Authors. All Rights Reserved.
60
61 Licensed under the Apache License 2.0 (the "License").  You may not use
62 this file except in compliance with the License.  You can obtain a copy
63 in the file LICENSE in the source distribution or at
64 L<https://www.openssl.org/source/license.html>.
65
66 =cut