]> git.ipfire.org Git - thirdparty/openssl.git/blob - doc/man7/EVP_SIGNATURE-ECDSA.pod
Copyright year updates
[thirdparty/openssl.git] / doc / man7 / EVP_SIGNATURE-ECDSA.pod
1 =pod
2
3 =head1 NAME
4
5 EVP_SIGNATURE-ECDSA - The EVP_PKEY ECDSA signature implementation.
6
7 =head1 DESCRIPTION
8
9 Support for computing ECDSA signatures.
10 See L<EVP_PKEY-EC(7)> for information related to EC keys.
11
12 =head2 ECDSA Signature Parameters
13
14 The following signature parameters can be set using EVP_PKEY_CTX_set_params().
15 This may be called after EVP_PKEY_sign_init() or EVP_PKEY_verify_init(),
16 and before calling EVP_PKEY_sign() or EVP_PKEY_verify().
17
18 =over 4
19
20 =item "digest" (B<OSSL_SIGNATURE_PARAM_DIGEST>) <UTF8 string>
21
22 =item "properties" (B<OSSL_SIGNATURE_PARAM_PROPERTIES>) <UTF8 string>
23
24 =item "nonce-type" (B<OSSL_SIGNATURE_PARAM_NONCE_TYPE>) <unsigned integer>
25
26 These parameters are described in L<provider-signature(7)>.
27
28 =back
29
30 The following signature parameters can be retrieved using
31 EVP_PKEY_CTX_get_params().
32
33 =over 4
34
35 =item "algorithm-id" (B<OSSL_SIGNATURE_PARAM_ALGORITHM_ID>) <octet string>
36
37 =item "digest" (B<OSSL_SIGNATURE_PARAM_DIGEST>) <UTF8 string>
38
39 =item "nonce-type" (B<OSSL_SIGNATURE_PARAM_NONCE_TYPE>) <unsigned integer>
40
41 The parameters are described in L<provider-signature(7)>.
42
43 =back
44
45 =head1 SEE ALSO
46
47 L<EVP_PKEY_CTX_set_params(3)>,
48 L<EVP_PKEY_sign(3)>,
49 L<EVP_PKEY_verify(3)>,
50 L<provider-signature(7)>,
51
52 =head1 COPYRIGHT
53
54 Copyright 2020-2023 The OpenSSL Project Authors. All Rights Reserved.
55
56 Licensed under the Apache License 2.0 (the "License"). You may not use
57 this file except in compliance with the License. You can obtain a copy
58 in the file LICENSE in the source distribution or at
59 L<https://www.openssl.org/source/license.html>.
60
61 =cut