1 | =pod
|
---|
2 |
|
---|
3 | =head1 NAME
|
---|
4 |
|
---|
5 | DH_size, DH_bits, DH_security_bits - get Diffie-Hellman prime size and
|
---|
6 | security bits
|
---|
7 |
|
---|
8 | =head1 SYNOPSIS
|
---|
9 |
|
---|
10 | #include <openssl/dh.h>
|
---|
11 |
|
---|
12 | The following functions have been deprecated since OpenSSL 3.0, and can be
|
---|
13 | hidden entirely by defining B<OPENSSL_API_COMPAT> with a suitable version value,
|
---|
14 | see L<openssl_user_macros(7)>:
|
---|
15 |
|
---|
16 | int DH_bits(const DH *dh);
|
---|
17 |
|
---|
18 | int DH_size(const DH *dh);
|
---|
19 |
|
---|
20 | int DH_security_bits(const DH *dh);
|
---|
21 |
|
---|
22 | =head1 DESCRIPTION
|
---|
23 |
|
---|
24 | The functions described on this page are deprecated.
|
---|
25 | Applications should instead use L<EVP_PKEY_get_bits(3)>,
|
---|
26 | L<EVP_PKEY_get_security_bits(3)> and L<EVP_PKEY_get_size(3)>.
|
---|
27 |
|
---|
28 | DH_bits() returns the number of significant bits.
|
---|
29 |
|
---|
30 | B<dh> and B<dh-E<gt>p> must not be B<NULL>.
|
---|
31 |
|
---|
32 | DH_size() returns the Diffie-Hellman prime size in bytes. It can be used
|
---|
33 | to determine how much memory must be allocated for the shared secret
|
---|
34 | computed by L<DH_compute_key(3)>.
|
---|
35 |
|
---|
36 | DH_security_bits() returns the number of security bits of the given B<dh>
|
---|
37 | key. See L<BN_security_bits(3)>.
|
---|
38 |
|
---|
39 | =head1 RETURN VALUES
|
---|
40 |
|
---|
41 | DH_bits() returns the number of bits in the key, or -1 if
|
---|
42 | B<dh> doesn't hold any key parameters.
|
---|
43 |
|
---|
44 | DH_size() returns the prime size of Diffie-Hellman in bytes, or -1 if
|
---|
45 | B<dh> doesn't hold any key parameters.
|
---|
46 |
|
---|
47 | DH_security_bits() returns the number of security bits, or -1 if
|
---|
48 | B<dh> doesn't hold any key parameters.
|
---|
49 |
|
---|
50 | =head1 SEE ALSO
|
---|
51 |
|
---|
52 | L<EVP_PKEY_get_bits(3)>,
|
---|
53 | L<DH_new(3)>, L<DH_generate_key(3)>,
|
---|
54 | L<BN_num_bits(3)>
|
---|
55 |
|
---|
56 | =head1 HISTORY
|
---|
57 |
|
---|
58 | All functions were deprecated in OpenSSL 3.0.
|
---|
59 |
|
---|
60 | =head1 COPYRIGHT
|
---|
61 |
|
---|
62 | Copyright 2000-2021 The OpenSSL Project Authors. All Rights Reserved.
|
---|
63 |
|
---|
64 | Licensed under the Apache License 2.0 (the "License"). You may not use
|
---|
65 | this file except in compliance with the License. You can obtain a copy
|
---|
66 | in the file LICENSE in the source distribution or at
|
---|
67 | L<https://www.openssl.org/source/license.html>.
|
---|
68 |
|
---|
69 | =cut
|
---|