Add ffdhe groups to trace output
[openssl.git] / doc / man3 / DH_size.pod
1 =pod
2
3 =head1 NAME
4
5 DH_size, DH_bits - get Diffie-Hellman prime size
6
7 =head1 SYNOPSIS
8
9 #include <openssl/dh.h>
10
11 int DH_size(const DH *dh);
12
13 int DH_bits(const DH *dh);
14
15 =head1 DESCRIPTION
16
17 DH_size() returns the Diffie-Hellman prime size in bytes. It can be used
18 to determine how much memory must be allocated for the shared secret
19 computed by DH_compute_key().
20
21 DH_bits() returns the number of significant bits.
22
23 B<dh> and B<dh-E<gt>p> must not be B<NULL>.
24
25 =head1 RETURN VALUE
26
27 The size.
28
29 =head1 SEE ALSO
30
31 L<DH_new(3)>, L<DH_generate_key(3)>,
32 L<BN_num_bits(3)>
33
34 =head1 HISTORY
35
36 DH_bits() was added in OpenSSL 1.1.0.
37
38 =head1 COPYRIGHT
39
40 Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.
41
42 Licensed under the OpenSSL license (the "License").  You may not use
43 this file except in compliance with the License.  You can obtain a copy
44 in the file LICENSE in the source distribution or at
45 L<https://www.openssl.org/source/license.html>.
46
47 =cut