blob: a5b805b5526d2c6a5304b0ddb10c4fba1fe22a3b [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +01002/*
3 * ECDH params to be used with kpp API
4 *
5 * Copyright (c) 2016, Intel Corporation
6 * Authors: Salvatore Benedetto <salvatore.benedetto@intel.com>
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +01007 */
8#ifndef _CRYPTO_ECDH_
9#define _CRYPTO_ECDH_
10
Stephan Mueller8d23da22016-10-21 04:58:20 +020011/**
12 * DOC: ECDH Helper Functions
13 *
14 * To use ECDH with the KPP cipher API, the following data structure and
15 * functions should be used.
16 *
17 * The ECC curves known to the ECDH implementation are specified in this
18 * header file.
19 *
20 * To use ECDH with KPP, the following functions should be used to operate on
21 * an ECDH private key. The packet private key that can be set with
22 * the KPP API function call of crypto_kpp_set_secret.
23 */
24
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +010025/* Curves IDs */
26#define ECC_CURVE_NIST_P192 0x0001
27#define ECC_CURVE_NIST_P256 0x0002
28
Stephan Mueller8d23da22016-10-21 04:58:20 +020029/**
30 * struct ecdh - define an ECDH private key
31 *
32 * @curve_id: ECC curve the key is based on.
33 * @key: Private ECDH key
34 * @key_size: Size of the private ECDH key
35 */
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +010036struct ecdh {
37 unsigned short curve_id;
38 char *key;
39 unsigned short key_size;
40};
41
Stephan Mueller8d23da22016-10-21 04:58:20 +020042/**
43 * crypto_ecdh_key_len() - Obtain the size of the private ECDH key
44 * @params: private ECDH key
45 *
46 * This function returns the packet ECDH key size. A caller can use that
47 * with the provided ECDH private key reference to obtain the required
48 * memory size to hold a packet key.
49 *
50 * Return: size of the key in bytes
51 */
Tudor-Dan Ambarus6e97e082017-09-29 12:13:08 +030052unsigned int crypto_ecdh_key_len(const struct ecdh *params);
Stephan Mueller8d23da22016-10-21 04:58:20 +020053
54/**
55 * crypto_ecdh_encode_key() - encode the private key
56 * @buf: Buffer allocated by the caller to hold the packet ECDH
57 * private key. The buffer should be at least crypto_ecdh_key_len
58 * bytes in size.
59 * @len: Length of the packet private key buffer
60 * @p: Buffer with the caller-specified private key
61 *
62 * The ECDH implementations operate on a packet representation of the private
63 * key.
64 *
65 * Return: -EINVAL if buffer has insufficient size, 0 on success
66 */
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +010067int crypto_ecdh_encode_key(char *buf, unsigned int len, const struct ecdh *p);
Stephan Mueller8d23da22016-10-21 04:58:20 +020068
69/**
70 * crypto_ecdh_decode_key() - decode a private key
71 * @buf: Buffer holding a packet key that should be decoded
Tudor-Dan Ambarusc0ca1212017-05-25 10:18:03 +030072 * @len: Length of the packet private key buffer
Stephan Mueller8d23da22016-10-21 04:58:20 +020073 * @p: Buffer allocated by the caller that is filled with the
Tudor-Dan Ambarusc0ca1212017-05-25 10:18:03 +030074 * unpacked ECDH private key.
Stephan Mueller8d23da22016-10-21 04:58:20 +020075 *
76 * The unpacking obtains the private key by pointing @p to the correct location
77 * in @buf. Thus, both pointers refer to the same memory.
78 *
79 * Return: -EINVAL if buffer has insufficient size, 0 on success
80 */
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +010081int crypto_ecdh_decode_key(const char *buf, unsigned int len, struct ecdh *p);
82
83#endif