This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

issues in nrf_crypto module in SDK14

Hello there,

I was wondering if there's a known issues page fro SDK 14.0.0 (not alpha).

Issue #1: crypto compile error: I ran into an issue compiling nrf_crypto.c I think the new type nrf_value_length_t should be used in nrf_crypto.c rather than the old type def of nrf_crypto_key_t . Also all de-referencing of the members of this struct should change to p_value and length as defined in nrf_crypto_types.h:

typedef struct
{
    uint8_t * p_value;
    uint32_t  length;

} nrf_value_length_t;

Issue #2: Can't compile nrf_crypto_svc.c as macro SVC_REGISTER_FUNCTION doesn't seem to be defined anywhere.

Thanks, Farhang

Related