Searched refs:ASN_LONG_LEN (Results 1 – 2 of 2) sorted by relevance
57 buf[1] = (uchar_t)(ASN_LONG_LEN | 0x02); /* following 2 octets */ in asn_build_sequence()101 buf[0] = (uchar_t)(ASN_LONG_LEN | 0x01); in asn_build_length()113 buf[0] = (uchar_t)(ASN_LONG_LEN | 0x02); in asn_build_length()411 if ((buf[0] & ASN_LONG_LEN) == 0) { in asn_parse_length()421 if (buf[0] == (uchar_t)ASN_LONG_LEN) in asn_parse_length()428 n_length_octets = buf[0] & ~ASN_LONG_LEN; in asn_parse_length()
118 #define ASN_LONG_LEN ((uchar_t)0x80) macro