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 | These parameters are described in L<provider-signature(7)>.
|
---|
25 |
|
---|
26 | =back
|
---|
27 |
|
---|
28 | The following signature parameters can be retrieved using
|
---|
29 | EVP_PKEY_CTX_get_params().
|
---|
30 |
|
---|
31 | =over 4
|
---|
32 |
|
---|
33 | =item "algorithm-id" (B<OSSL_SIGNATURE_PARAM_ALGORITHM_ID>) <octet string>
|
---|
34 |
|
---|
35 | =item "digest" (B<OSSL_SIGNATURE_PARAM_DIGEST>) <UTF8 string>
|
---|
36 |
|
---|
37 | The parameters are described in L<provider-signature(7)>.
|
---|
38 |
|
---|
39 | =back
|
---|
40 |
|
---|
41 | =head1 SEE ALSO
|
---|
42 |
|
---|
43 | L<EVP_PKEY_CTX_set_params(3)>,
|
---|
44 | L<EVP_PKEY_sign(3)>,
|
---|
45 | L<EVP_PKEY_verify(3)>,
|
---|
46 | L<provider-signature(7)>,
|
---|
47 |
|
---|
48 | =head1 COPYRIGHT
|
---|
49 |
|
---|
50 | Copyright 2020-2021 The OpenSSL Project Authors. All Rights Reserved.
|
---|
51 |
|
---|
52 | Licensed under the Apache License 2.0 (the "License"). You may not use
|
---|
53 | this file except in compliance with the License. You can obtain a copy
|
---|
54 | in the file LICENSE in the source distribution or at
|
---|
55 | L<https://www.openssl.org/source/license.html>.
|
---|
56 |
|
---|
57 | =cut
|
---|