Rename OSSL_SERIALIZER / OSSL_DESERIALIZER to OSSL_ENCODE / OSSL_DECODE
[openssl.git] / doc / man3 / DH_size.pod
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  int DH_bits(const DH *dh);
13
14 Deprecated since OpenSSL 3.0, can be hidden entirely by defining
15 B<OPENSSL_API_COMPAT> with a suitable version value, see
16 L<openssl_user_macros(7)>:
17
18  int DH_size(const DH *dh);
19
20  int DH_security_bits(const DH *dh);
21
22 =head1 DESCRIPTION
23
24 DH_bits() returns the number of significant bits.
25
26 B<dh> and B<dh-E<gt>p> must not be B<NULL>.
27
28 The remaining functions described on this page are deprecated.
29 Applications should instead use L<EVP_PKEY_security_bits(3)> and
30 L<EVP_PKEY_size(3)>.
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.
42
43 DH_size() returns the prime size of Diffie-Hellman in bytes.
44
45 DH_security_bits() returns the number of security bits.
46
47 =head1 SEE ALSO
48
49 L<EVP_PKEY_bits(3)>,
50 L<DH_new(3)>, L<DH_generate_key(3)>,
51 L<BN_num_bits(3)>
52
53 =head1 HISTORY
54
55 The DH_size() and DH_security_bits() functions were deprecated in OpenSSL 3.0.
56
57 The DH_bits() function was added in OpenSSL 1.1.0.
58
59 =head1 COPYRIGHT
60
61 Copyright 2000-2020 The OpenSSL Project Authors. All Rights Reserved.
62
63 Licensed under the Apache License 2.0 (the "License").  You may not use
64 this file except in compliance with the License.  You can obtain a copy
65 in the file LICENSE in the source distribution or at
66 L<https://www.openssl.org/source/license.html>.
67
68 =cut