openssl_ed_private_key.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * Copyright (C) 2018 Tobias Brunner
  3. * HSR Hochschule fuer Technik Rapperswil
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of the GNU General Public License as published by the
  7. * Free Software Foundation; either version 2 of the License, or (at your
  8. * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
  9. *
  10. * This program is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  12. * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  13. * for more details.
  14. */
  15. /**
  16. * @defgroup openssl_ed_private_key openssl_ed_private_key
  17. * @{ @ingroup openssl_p
  18. */
  19. #ifndef OPENSSL_ED_PRIVATE_KEY_H_
  20. #define OPENSSL_ED_PRIVATE_KEY_H_
  21. #include <openssl/evp.h>
  22. #include <credentials/builder.h>
  23. #include <credentials/keys/private_key.h>
  24. /**
  25. * Generate an EdDSA private key using OpenSSL.
  26. *
  27. * @param type type of the key, must be KEY_ED25519 or KEY_ED448
  28. * @param args builder_part_t argument list
  29. * @return generated key, NULL on failure
  30. */
  31. private_key_t *openssl_ed_private_key_gen(key_type_t type, va_list args);
  32. /**
  33. * Load an EdDSA private key using OpenSSL.
  34. *
  35. * Accepts a BUILD_BLOB_ASN1_DER argument.
  36. *
  37. * @param type type of the key, must be KEY_ED25519 or KEY_ED448
  38. * @param args builder_part_t argument list
  39. * @return loaded key, NULL on failure
  40. */
  41. private_key_t *openssl_ed_private_key_load(key_type_t type, va_list args);
  42. /**
  43. * Wrap an EVP_PKEY object of type EVP_PKEY_ED25519/448
  44. *
  45. * @param key EVP_PKEY object (adopted)
  46. * @param engine whether the key was loaded via an engine
  47. * @return loaded key, NULL on failure
  48. */
  49. private_key_t *openssl_ed_private_key_create(EVP_PKEY *key, bool engine);
  50. #endif /** OPENSSL_ED_PRIVATE_KEY_H_ @}*/