MBEDTLS_ASN1_BOOLEAN is only used within mbedTLS.
 
Symbols
loading...
Files
loading...

MBEDTLS_ASN1_BOOLEAN macro

\name DER constants These constants comply with the DER encoded ASN.1 type tags. DER encoding uses hexadecimal representation. An example DER sequence is:\n - 0x02 -- tag indicating INTEGER - 0x01 -- length in octets - 0x05 -- value Such sequences are typically read into \c ::mbedtls_x509_buf.

Syntax

#define MBEDTLS_ASN1_BOOLEAN 0x01

References

LocationText
asn1.h:72
#define MBEDTLS_ASN1_BOOLEAN 0x01
asn1parse.c:130
if( ( ret = mbedtls_asn1_get_tag( p, end, &len, MBEDTLS_ASN1_BOOLEAN ) ) != 0 )
asn1write.c:229
MBEDTLS_ASN1_CHK_ADD( len, mbedtls_asn1_write_tag( p, start, MBEDTLS_ASN1_BOOLEAN ) );