From bdf20a0d555e50077d8cc83cf506d7b0913f5576 Mon Sep 17 00:00:00 2001 From: Agathiyan Bragadeesh Date: Mon, 14 Aug 2023 15:26:03 +0100 Subject: [PATCH] Alter MBEDTLS_ASN1_IS_STRING_TAG macro Signed-off-by: Agathiyan Bragadeesh --- include/mbedtls/asn1.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/mbedtls/asn1.h b/include/mbedtls/asn1.h index 002c8dee0..6dfc551cc 100644 --- a/include/mbedtls/asn1.h +++ b/include/mbedtls/asn1.h @@ -103,8 +103,7 @@ (1u << MBEDTLS_ASN1_T61_STRING) | \ (1u << MBEDTLS_ASN1_IA5_STRING) | \ (1u << MBEDTLS_ASN1_UNIVERSAL_STRING) | \ - (1u << MBEDTLS_ASN1_PRINTABLE_STRING) | \ - (1u << MBEDTLS_ASN1_BIT_STRING))) != 0)) + (1u << MBEDTLS_ASN1_PRINTABLE_STRING))) != 0)) /* * Bit masks for each of the components of an ASN.1 tag as specified in