ecdh.h 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * ECDH params to be used with kpp API
  4. *
  5. * Copyright (c) 2016, Intel Corporation
  6. * Authors: Salvatore Benedetto <salvatore.benedetto@intel.com>
  7. */
  8. #ifndef _CRYPTO_ECDH_
  9. #define _CRYPTO_ECDH_
  10. /**
  11. * DOC: ECDH Helper Functions
  12. *
  13. * To use ECDH with the KPP cipher API, the following data structure and
  14. * functions should be used.
  15. *
  16. * The ECC curves known to the ECDH implementation are specified in this
  17. * header file.
  18. *
  19. * To use ECDH with KPP, the following functions should be used to operate on
  20. * an ECDH private key. The packet private key that can be set with
  21. * the KPP API function call of crypto_kpp_set_secret.
  22. */
  23. /* Curves IDs */
  24. #define ECC_CURVE_NIST_P192 0x0001
  25. #define ECC_CURVE_NIST_P256 0x0002
  26. #define ECC_CURVE_NIST_P384 0x0003
  27. #define ECC_CURVE_NIST_P521 0x0004
  28. /**
  29. * struct ecdh - define an ECDH private key
  30. *
  31. * @key: Private ECDH key
  32. * @key_size: Size of the private ECDH key
  33. */
  34. struct ecdh {
  35. char *key;
  36. unsigned short key_size;
  37. };
  38. /**
  39. * crypto_ecdh_key_len() - Obtain the size of the private ECDH key
  40. * @params: private ECDH key
  41. *
  42. * This function returns the packet ECDH key size. A caller can use that
  43. * with the provided ECDH private key reference to obtain the required
  44. * memory size to hold a packet key.
  45. *
  46. * Return: size of the key in bytes
  47. */
  48. unsigned int crypto_ecdh_key_len(const struct ecdh *params);
  49. /**
  50. * crypto_ecdh_encode_key() - encode the private key
  51. * @buf: Buffer allocated by the caller to hold the packet ECDH
  52. * private key. The buffer should be at least crypto_ecdh_key_len
  53. * bytes in size.
  54. * @len: Length of the packet private key buffer
  55. * @p: Buffer with the caller-specified private key
  56. *
  57. * The ECDH implementations operate on a packet representation of the private
  58. * key.
  59. *
  60. * Return: -EINVAL if buffer has insufficient size, 0 on success
  61. */
  62. int crypto_ecdh_encode_key(char *buf, unsigned int len, const struct ecdh *p);
  63. /**
  64. * crypto_ecdh_decode_key() - decode a private key
  65. * @buf: Buffer holding a packet key that should be decoded
  66. * @len: Length of the packet private key buffer
  67. * @p: Buffer allocated by the caller that is filled with the
  68. * unpacked ECDH private key.
  69. *
  70. * The unpacking obtains the private key by pointing @p to the correct location
  71. * in @buf. Thus, both pointers refer to the same memory.
  72. *
  73. * Return: -EINVAL if buffer has insufficient size, 0 on success
  74. */
  75. int crypto_ecdh_decode_key(const char *buf, unsigned int len, struct ecdh *p);
  76. #endif