ECDH/ECDSA: Fix indentation

This commit is contained in:
Christoph M. Wintersteiger 2019-02-15 12:59:59 +00:00 committed by Janos Follath
parent ef17e3b59c
commit 3ff60bcf1a
2 changed files with 13 additions and 13 deletions

View file

@ -383,10 +383,10 @@ int mbedtls_ecdsa_can_do( mbedtls_ecp_group_id gid )
switch( gid )
{
#ifdef MBEDTLS_ECP_DP_CURVE25519_ENABLED
case MBEDTLS_ECP_DP_CURVE25519: return 0;
case MBEDTLS_ECP_DP_CURVE25519: return 0;
#endif
#ifdef MBEDTLS_ECP_DP_CURVE448_ENABLED
case MBEDTLS_ECP_DP_CURVE448: return 0;
case MBEDTLS_ECP_DP_CURVE448: return 0;
#endif
default: return 1;
}