Fixed -Wunused warnings when building without asymmetric crypto

This commit is contained in:
Gilles Peskine 2019-10-10 20:36:12 +02:00
parent fec306452b
commit b16841ee69
3 changed files with 8 additions and 2 deletions

View file

@ -230,9 +230,11 @@ static inline int mbedtls_psa_get_ecc_oid_from_id(
*oid_len = MBEDTLS_OID_SIZE( MBEDTLS_OID_EC_GRP_BP512R1 );
return( 0 );
#endif /* MBEDTLS_ECP_DP_BP512R1_ENABLED */
default:
(void) oid;
(void) oid_len;
return( -1 );
}
return( -1 );
}
#define MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH 1