Fix build without CMAC

Add missing guard for MBEDTLS_CMAC_C.
This commit is contained in:
Gilles Peskine 2018-06-19 11:57:35 +02:00 committed by itayzafrir
parent 9a9e19f3fb
commit e3b07d81d6

View File

@ -1065,6 +1065,7 @@ psa_status_t psa_mac_abort( psa_mac_operation_t *operation )
return( PSA_SUCCESS );
}
#if defined(MBEDTLS_CMAC_C)
static int psa_cmac_start( psa_mac_operation_t *operation,
size_t key_bits,
key_slot_t *slot,
@ -1085,6 +1086,7 @@ static int psa_cmac_start( psa_mac_operation_t *operation,
key_bits );
return( ret );
}
#endif /* MBEDTLS_CMAC_C */
static int psa_hmac_start( psa_mac_operation_t *operation,
psa_key_type_t key_type,