1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-28 00:21:48 +03:00

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;
}