/* SPDX-License-Identifier: GPL-2.0-or-later */1/*2* ECDH params to be used with kpp API3*4* Copyright (c) 2016, Intel Corporation5* Authors: Salvatore Benedetto <[email protected]>6*/7#ifndef _CRYPTO_ECDH_8#define _CRYPTO_ECDH_910/**11* DOC: ECDH Helper Functions12*13* To use ECDH with the KPP cipher API, the following data structure and14* functions should be used.15*16* The ECC curves known to the ECDH implementation are specified in this17* header file.18*19* To use ECDH with KPP, the following functions should be used to operate on20* an ECDH private key. The packet private key that can be set with21* the KPP API function call of crypto_kpp_set_secret.22*/2324/* Curves IDs */25#define ECC_CURVE_NIST_P192 0x000126#define ECC_CURVE_NIST_P256 0x000227#define ECC_CURVE_NIST_P384 0x000328#define ECC_CURVE_NIST_P521 0x00042930/**31* struct ecdh - define an ECDH private key32*33* @key: Private ECDH key34* @key_size: Size of the private ECDH key35*/36struct ecdh {37char *key;38unsigned short key_size;39};4041/**42* crypto_ecdh_key_len() - Obtain the size of the private ECDH key43* @params: private ECDH key44*45* This function returns the packet ECDH key size. A caller can use that46* with the provided ECDH private key reference to obtain the required47* memory size to hold a packet key.48*49* Return: size of the key in bytes50*/51unsigned int crypto_ecdh_key_len(const struct ecdh *params);5253/**54* crypto_ecdh_encode_key() - encode the private key55* @buf: Buffer allocated by the caller to hold the packet ECDH56* private key. The buffer should be at least crypto_ecdh_key_len57* bytes in size.58* @len: Length of the packet private key buffer59* @p: Buffer with the caller-specified private key60*61* The ECDH implementations operate on a packet representation of the private62* key.63*64* Return: -EINVAL if buffer has insufficient size, 0 on success65*/66int crypto_ecdh_encode_key(char *buf, unsigned int len, const struct ecdh *p);6768/**69* crypto_ecdh_decode_key() - decode a private key70* @buf: Buffer holding a packet key that should be decoded71* @len: Length of the packet private key buffer72* @p: Buffer allocated by the caller that is filled with the73* unpacked ECDH private key.74*75* The unpacking obtains the private key by pointing @p to the correct location76* in @buf. Thus, both pointers refer to the same memory.77*78* Return: -EINVAL if buffer has insufficient size, 0 on success79*/80int crypto_ecdh_decode_key(const char *buf, unsigned int len, struct ecdh *p);8182#endif838485