2000-01-22 20:05:23 +00:00
|
|
|
=pod
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
2015-04-18 10:23:12 +00:00
|
|
|
DH_size, DH_bits - get Diffie-Hellman prime size
|
2000-01-22 20:05:23 +00:00
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
2015-04-18 10:23:12 +00:00
|
|
|
#include <openssl/dh.h>
|
2000-01-22 20:05:23 +00:00
|
|
|
|
2015-04-18 10:23:12 +00:00
|
|
|
int DH_size(const DH *dh);
|
|
|
|
|
|
|
|
int DH_bits(const DH *dh);
|
2000-01-22 20:05:23 +00:00
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
2015-04-18 10:23:12 +00:00
|
|
|
DH_size() returns the Diffie-Hellman prime size in bytes. It can be used
|
2000-01-22 20:05:23 +00:00
|
|
|
to determine how much memory must be allocated for the shared secret
|
|
|
|
computed by DH_compute_key().
|
|
|
|
|
2015-04-18 10:23:12 +00:00
|
|
|
DH_bits() returns the number of significant bits.
|
|
|
|
|
|
|
|
B<dh> and B<dh-E<gt>p> must not be B<NULL>.
|
2000-01-22 20:05:23 +00:00
|
|
|
|
|
|
|
=head1 RETURN VALUE
|
|
|
|
|
2015-04-18 10:23:12 +00:00
|
|
|
The size.
|
2000-01-22 20:05:23 +00:00
|
|
|
|
|
|
|
=head1 SEE ALSO
|
|
|
|
|
2015-08-17 19:21:33 +00:00
|
|
|
L<dh(3)>, L<DH_generate_key(3)>,
|
|
|
|
L<BN_num_bits(3)>
|
2000-01-22 20:05:23 +00:00
|
|
|
|
|
|
|
=head1 HISTORY
|
|
|
|
|
2015-04-18 10:23:12 +00:00
|
|
|
DH_bits() was added in OpenSSL 1.1.0.
|
2000-01-22 20:05:23 +00:00
|
|
|
|
|
|
|
=cut
|