]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - include/crypto/dh.h
Add ACVP fips module tests
[thirdparty/openssl.git] / include / crypto / dh.h
index 2b48b5d9059b35bd06b571bd1494e5fc9765fb83..22847dd1e01fd34125658d3947813ee90ebaf3d5 100644 (file)
@@ -7,15 +7,31 @@
  * https://www.openssl.org/source/license.html
  */
 
+#include <openssl/core.h>
 #include <openssl/dh.h>
 #include "internal/ffc.h"
 
-int dh_generate_ffc_parameters(OPENSSL_CTX *libctx, DH *dh, int bits,
-                               int qbits, int gindex, BN_GENCB *cb);
+DH *dh_new_by_nid_with_libctx(OPENSSL_CTX *libctx, int nid);
+DH *dh_new_with_libctx(OPENSSL_CTX *libctx);
+
+int dh_generate_ffc_parameters(DH *dh, int type, int pbits, int qbits,
+                               BN_GENCB *cb);
+int dh_generate_public_key(BN_CTX *ctx, DH *dh, const BIGNUM *priv_key,
+                           BIGNUM *pub_key);
+int dh_get_named_group_uid_from_size(int pbits);
+const char *dh_gen_type_id2name(int id);
+void dh_cache_named_group(DH *dh);
 
-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);
 FFC_PARAMS *dh_get0_params(DH *dh);
 int dh_get0_nid(const DH *dh);
+int dh_ffc_params_fromdata(DH *dh, const OSSL_PARAM params[]);
+int dh_key_fromdata(DH *dh, const OSSL_PARAM params[]);
+
+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);
+
+int dh_buf2key(DH *key, const unsigned char *buf, size_t len);
+size_t dh_key2buf(const DH *dh, unsigned char **pbuf, size_t size, int alloc);