DH: add internal dh_get_method()
[openssl.git] / include / crypto / dh.h
index 1e856101f3dc44747b78fe02cd9b5836f27bfafb..7c7cebdc16d2f6ecd70f7cb6ac1dfaf48aa15475 100644 (file)
 #include <openssl/dh.h>
 #include "internal/ffc.h"
 
-int dh_compute_key(OPENSSL_CTX *ctx, unsigned char *key, const BIGNUM *pub_key,
-                   DH *dh);
-int dh_compute_key_padded(OPENSSL_CTX *ctx, unsigned char *key,
-                          const BIGNUM *pub_key, DH *dh);
+DH *dh_new_with_ctx(OPENSSL_CTX *libctx);
+
+int dh_generate_ffc_parameters(DH *dh, int bits,
+                               int qbits, int gindex, BN_GENCB *cb);
+int dh_generate_public_key(BN_CTX *ctx, DH *dh, const BIGNUM *priv_key,
+                           BIGNUM *pub_key);
+
 FFC_PARAMS *dh_get0_params(DH *dh);
 int dh_get0_nid(const DH *dh);
+
+int dh_check_pub_key_partial(const DH *dh, const BIGNUM *pub_key, int *ret);
+int dh_check_priv_key(const DH *dh, const BIGNUM *priv_key, int *ret);
+int dh_check_pairwise(DH *dh);
+
+const DH_METHOD *dh_get_method(const DH *dh);