12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- #ifndef NRF_CRYPTO_ECDH_SHARED_H__
- #define NRF_CRYPTO_ECDH_SHARED_H__
- #if !defined(__SDK_DOXYGEN__)
- #include <stdint.h>
- #include <stddef.h>
- #include "sdk_errors.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- typedef ret_code_t (*nrf_crypto_backend_ecdh_compute_fn_t)(
- void * p_context,
- void const * p_private_key,
- void const * p_public_key,
- uint8_t * p_shared_secret);
- #ifdef __cplusplus
- }
- #endif
- #endif
- #endif
|