Sortix nightly manual
This manual documents Sortix nightly, a development build that has not been officially released. You can instead view this document in the latest official manual.
NAME
DH_get0_pqg, DH_get0_p, DH_get0_q, DH_get0_g, DH_set0_pqg, DH_get0_key, DH_get0_pub_key, DH_get0_priv_key, DH_set0_key, DH_clear_flags, DH_test_flags, DH_set_flags, DH_get0_engine, DH_set_length — get data from and set data in a DH objectSYNOPSIS
#include <openssl/dh.h>DH_get0_pqg(const DH *dh, const BIGNUM **p, const BIGNUM **q, const BIGNUM **g);
DH_get0_p(const DH *dh);
DH_get0_q(const DH *dh);
DH_get0_g(const DH *dh);
DH_set0_pqg(DH *dh, BIGNUM *p, BIGNUM *q, BIGNUM *g);
DH_get0_key(const DH *dh, const BIGNUM **pub_key, const BIGNUM **priv_key);
DH_get0_pub_key(const DH *dh);
DH_get0_priv_key(const DH *dh);
DH_set0_key(DH *dh, BIGNUM *pub_key, BIGNUM *priv_key);
DH_clear_flags(DH *dh, int flags);
DH_test_flags(const DH *dh, int flags);
DH_set_flags(DH *dh, int flags);
DH_get0_engine(DH *d);
DH_set_length(DH *dh, long length);