2020-01-23 18:33:28 +08:00
|
|
|
/*
|
|
|
|
* Copyright 2020 The OpenSSL Project Authors. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License 2.0 (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
|
|
|
|
* https://www.openssl.org/source/license.html
|
|
|
|
*/
|
|
|
|
|
2020-03-23 12:40:47 +08:00
|
|
|
#include <openssl/core.h>
|
2020-10-15 13:10:29 +08:00
|
|
|
#include <openssl/params.h>
|
2020-01-23 18:33:28 +08:00
|
|
|
#include <openssl/dh.h>
|
2020-01-24 12:09:33 +08:00
|
|
|
#include "internal/ffc.h"
|
2020-01-23 18:33:28 +08:00
|
|
|
|
2020-10-15 17:55:50 +08:00
|
|
|
DH *dh_new_by_nid_ex(OSSL_LIB_CTX *libctx, int nid);
|
|
|
|
DH *dh_new_ex(OSSL_LIB_CTX *libctx);
|
2020-12-11 18:01:09 +08:00
|
|
|
void ossl_dh_set0_libctx(DH *d, OSSL_LIB_CTX *libctx);
|
2020-02-16 11:03:46 +08:00
|
|
|
|
2020-06-17 09:33:16 +08:00
|
|
|
int dh_generate_ffc_parameters(DH *dh, int type, int pbits, int qbits,
|
|
|
|
BN_GENCB *cb);
|
2020-10-21 06:38:44 +08:00
|
|
|
int dh_generate_public_key(BN_CTX *ctx, const DH *dh, const BIGNUM *priv_key,
|
2020-02-16 11:03:46 +08:00
|
|
|
BIGNUM *pub_key);
|
2020-04-15 23:14:00 +08:00
|
|
|
int dh_get_named_group_uid_from_size(int pbits);
|
|
|
|
const char *dh_gen_type_id2name(int id);
|
2020-12-02 02:11:59 +08:00
|
|
|
int dh_gen_type_name2id(const char *name);
|
2020-04-20 09:07:38 +08:00
|
|
|
void dh_cache_named_group(DH *dh);
|
2020-02-06 20:28:36 +08:00
|
|
|
|
2020-01-24 12:09:33 +08:00
|
|
|
FFC_PARAMS *dh_get0_params(DH *dh);
|
2020-01-31 06:18:46 +08:00
|
|
|
int dh_get0_nid(const DH *dh);
|
2020-10-15 13:10:29 +08:00
|
|
|
int dh_params_fromdata(DH *dh, const OSSL_PARAM params[]);
|
2020-03-23 12:40:47 +08:00
|
|
|
int dh_key_fromdata(DH *dh, const OSSL_PARAM params[]);
|
2020-10-15 13:10:29 +08:00
|
|
|
int dh_params_todata(DH *dh, OSSL_PARAM_BLD *bld, OSSL_PARAM params[]);
|
|
|
|
int dh_key_todata(DH *dh, OSSL_PARAM_BLD *bld, OSSL_PARAM params[]);
|
2020-02-16 11:03:46 +08:00
|
|
|
|
|
|
|
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);
|
2020-10-21 06:38:44 +08:00
|
|
|
int dh_check_pairwise(const DH *dh);
|
2020-02-29 15:57:34 +08:00
|
|
|
|
|
|
|
const DH_METHOD *dh_get_method(const DH *dh);
|
2020-05-20 23:20:27 +08:00
|
|
|
|
|
|
|
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);
|
2020-08-04 09:21:21 +08:00
|
|
|
|
|
|
|
int dh_KDF_X9_42_asn1(unsigned char *out, size_t outlen,
|
|
|
|
const unsigned char *Z, size_t Zlen,
|
|
|
|
const char *cek_alg,
|
|
|
|
const unsigned char *ukm, size_t ukmlen, const EVP_MD *md,
|
2020-10-15 17:55:50 +08:00
|
|
|
OSSL_LIB_CTX *libctx, const char *propq);
|