@@ -336,7 +336,7 @@ psa_status_t cracen_aead_encrypt_setup(cracen_aead_operation_t *operation,
336
336
const uint8_t * key_buffer , size_t key_buffer_size ,
337
337
psa_algorithm_t alg )
338
338
{
339
- #ifdef CONFIG_SOC_NRF54L20
339
+ #ifdef CONFIG_SOC_NRF54LM20A
340
340
return PSA_ERROR_NOT_SUPPORTED ;
341
341
#else
342
342
return setup (operation , CRACEN_ENCRYPT , attributes , key_buffer , key_buffer_size , alg );
@@ -348,7 +348,7 @@ psa_status_t cracen_aead_decrypt_setup(cracen_aead_operation_t *operation,
348
348
const uint8_t * key_buffer , size_t key_buffer_size ,
349
349
psa_algorithm_t alg )
350
350
{
351
- #ifdef CONFIG_SOC_NRF54L20
351
+ #ifdef CONFIG_SOC_NRF54LM20A
352
352
return PSA_ERROR_NOT_SUPPORTED ;
353
353
#else
354
354
return setup (operation , CRACEN_DECRYPT , attributes , key_buffer , key_buffer_size , alg );
@@ -371,7 +371,7 @@ static psa_status_t set_nonce(cracen_aead_operation_t *operation, const uint8_t
371
371
psa_status_t cracen_aead_set_nonce (cracen_aead_operation_t * operation , const uint8_t * nonce ,
372
372
size_t nonce_length )
373
373
{
374
- #ifdef CONFIG_SOC_NRF54L20
374
+ #ifdef CONFIG_SOC_NRF54LM20A
375
375
return PSA_ERROR_NOT_SUPPORTED ;
376
376
#else
377
377
psa_status_t status ;
@@ -406,7 +406,7 @@ static void set_lengths(cracen_aead_operation_t *operation, size_t ad_length,
406
406
psa_status_t cracen_aead_set_lengths (cracen_aead_operation_t * operation , size_t ad_length ,
407
407
size_t plaintext_length )
408
408
{
409
- #ifdef CONFIG_SOC_NRF54L20
409
+ #ifdef CONFIG_SOC_NRF54LM20A
410
410
return PSA_ERROR_NOT_SUPPORTED ;
411
411
#else
412
412
set_lengths (operation , ad_length , plaintext_length );
@@ -525,7 +525,7 @@ static psa_status_t cracen_aead_update_internal(cracen_aead_operation_t *operati
525
525
psa_status_t cracen_aead_update_ad (cracen_aead_operation_t * operation , const uint8_t * input ,
526
526
size_t input_length )
527
527
{
528
- #ifdef CONFIG_SOC_NRF54L20
528
+ #ifdef CONFIG_SOC_NRF54LM20A
529
529
return PSA_ERROR_NOT_SUPPORTED ;
530
530
#else
531
531
return cracen_aead_update_internal (operation , input , input_length , NULL , 0 , NULL , true);
@@ -536,7 +536,7 @@ psa_status_t cracen_aead_update(cracen_aead_operation_t *operation, const uint8_
536
536
size_t input_length , uint8_t * output , size_t output_size ,
537
537
size_t * output_length )
538
538
{
539
- #ifdef CONFIG_SOC_NRF54L20
539
+ #ifdef CONFIG_SOC_NRF54LM20A
540
540
return PSA_ERROR_NOT_SUPPORTED ;
541
541
#else
542
542
/*
@@ -602,7 +602,7 @@ psa_status_t cracen_aead_finish(cracen_aead_operation_t *operation, uint8_t *cip
602
602
size_t ciphertext_size , size_t * ciphertext_length , uint8_t * tag ,
603
603
size_t tag_size , size_t * tag_length )
604
604
{
605
- #ifdef CONFIG_SOC_NRF54L20
605
+ #ifdef CONFIG_SOC_NRF54LM20A
606
606
return PSA_ERROR_NOT_SUPPORTED ;
607
607
#else
608
608
psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED ;
@@ -653,7 +653,7 @@ psa_status_t cracen_aead_verify(cracen_aead_operation_t *operation, uint8_t *pla
653
653
size_t plaintext_size , size_t * plaintext_length , const uint8_t * tag ,
654
654
size_t tag_length )
655
655
{
656
- #ifdef CONFIG_SOC_NRF54L20
656
+ #ifdef CONFIG_SOC_NRF54LM20A
657
657
return PSA_ERROR_NOT_SUPPORTED ;
658
658
#else
659
659
psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED ;
0 commit comments