2000-01-22 20:05:23 +00:00
|
|
|
=pod
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
2017-08-09 15:25:19 +00:00
|
|
|
DH_size, DH_bits, DH_security_bits - get Diffie-Hellman prime size and
|
|
|
|
security bits
|
2000-01-22 20:05:23 +00:00
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
2017-08-09 15:25:19 +00:00
|
|
|
#include <openssl/dh.h>
|
2000-01-22 20:05:23 +00:00
|
|
|
|
2017-08-09 15:25:19 +00:00
|
|
|
int DH_size(const DH *dh);
|
2015-04-18 10:23:12 +00:00
|
|
|
|
2017-08-09 15:25:19 +00:00
|
|
|
int DH_bits(const DH *dh);
|
|
|
|
|
|
|
|
int DH_security_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
|
2017-08-09 15:25:19 +00:00
|
|
|
computed by L<DH_compute_key(3)>.
|
2000-01-22 20:05:23 +00:00
|
|
|
|
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
|
|
|
|
2017-08-09 15:25:19 +00:00
|
|
|
DH_security_bits() returns the number of security bits of the given B<dh>
|
|
|
|
key. See L<BN_security_bits(3)>.
|
|
|
|
|
2017-12-25 09:50:39 +00:00
|
|
|
=head1 RETURN VALUES
|
2000-01-22 20:05:23 +00:00
|
|
|
|
2017-08-09 15:25:19 +00:00
|
|
|
DH_size() returns the prime size of Diffie-Hellman in bytes.
|
|
|
|
|
|
|
|
DH_bits() returns the number of bits in the key.
|
|
|
|
|
|
|
|
DH_security_bits() returns the number of security bits.
|
2000-01-22 20:05:23 +00:00
|
|
|
|
|
|
|
=head1 SEE ALSO
|
|
|
|
|
2016-11-11 08:33:09 +00:00
|
|
|
L<DH_new(3)>, L<DH_generate_key(3)>,
|
2015-08-17 19:21:33 +00:00
|
|
|
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
|
|
|
|
2016-05-18 15:44:05 +00:00
|
|
|
=head1 COPYRIGHT
|
|
|
|
|
2018-01-15 17:01:46 +00:00
|
|
|
Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.
|
2016-05-18 15:44:05 +00:00
|
|
|
|
|
|
|
Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
this file except in compliance with the License. You can obtain a copy
|
|
|
|
in the file LICENSE in the source distribution or at
|
|
|
|
L<https://www.openssl.org/source/license.html>.
|
|
|
|
|
|
|
|
=cut
|