Add comment for skipped AES-192 test condition
diff --git a/library/gcm.c b/library/gcm.c
index 7b2760a..97e9d88 100644
--- a/library/gcm.c
+++ b/library/gcm.c
@@ -757,6 +757,11 @@
ret = mbedtls_gcm_setkey( &ctx, cipher, key[key_index[i]],
key_len );
+ /*
+ * AES-192 is an optional feature that may be unavailable when
+ * there is an alternative underlying implementation i.e. when
+ * MBEDTLS_AES_ALT is defined.
+ */
if( ret == MBEDTLS_ERR_AES_FEATURE_UNAVAILABLE && key_len == 192 )
{
mbedtls_printf( "skipped\n" );