1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

Remove GMAC algorithm (for now)

It can't be implemented with the current version of the API
This commit is contained in:
Adrian L. Shaw
2019-07-11 15:51:45 +01:00
parent fd2aed4d76
commit 2282cfa660
3 changed files with 0 additions and 15 deletions

View File

@ -2005,8 +2005,6 @@ static const mbedtls_cipher_info_t *mbedtls_cipher_info_from_psa(
}
else if( alg == PSA_ALG_CMAC )
mode = MBEDTLS_MODE_ECB;
else if( alg == PSA_ALG_GMAC )
mode = MBEDTLS_MODE_GCM;
else
return( NULL );