Lines Matching refs:tag

23                            int tag, int xclass, int constructed, int indent)  in asn1_print_info()  argument
63 BIO_snprintf(str, sizeof(str), "priv [ %d ] ", tag); in asn1_print_info()
65 BIO_snprintf(str, sizeof(str), "cont [ %d ]", tag); in asn1_print_info()
67 BIO_snprintf(str, sizeof(str), "appl [ %d ]", tag); in asn1_print_info()
68 else if (tag > 30) in asn1_print_info()
69 BIO_snprintf(str, sizeof(str), "<ASN1 %d>", tag); in asn1_print_info()
71 p = ASN1_tag2str(tag); in asn1_print_info()
99 int tag, xclass, ret = 0; in asn1_parse2() local
118 j = ASN1_get_object(&p, &len, &tag, &xclass, length); in asn1_parse2()
129 hl, len, tag, xclass, j, (indent) ? depth : 0)) in asn1_parse2()
172 if ((tag == V_ASN1_PRINTABLESTRING) || in asn1_parse2()
173 (tag == V_ASN1_T61STRING) || in asn1_parse2()
174 (tag == V_ASN1_IA5STRING) || in asn1_parse2()
175 (tag == V_ASN1_VISIBLESTRING) || in asn1_parse2()
176 (tag == V_ASN1_NUMERICSTRING) || in asn1_parse2()
177 (tag == V_ASN1_UTF8STRING) || in asn1_parse2()
178 (tag == V_ASN1_UTCTIME) || (tag == V_ASN1_GENERALIZEDTIME)) { in asn1_parse2()
184 } else if (tag == V_ASN1_OBJECT) { in asn1_parse2()
195 } else if (tag == V_ASN1_BOOLEAN) { in asn1_parse2()
203 } else if (tag == V_ASN1_BMPSTRING) { in asn1_parse2()
205 } else if (tag == V_ASN1_OCTET_STRING) { in asn1_parse2()
261 } else if (tag == V_ASN1_INTEGER) { in asn1_parse2()
287 } else if (tag == V_ASN1_ENUMERATED) { in asn1_parse2()
343 if ((tag == V_ASN1_EOC) && (xclass == 0)) { in asn1_parse2()
360 const char *ASN1_tag2str(int tag) in ASN1_tag2str() argument
381 if ((tag == V_ASN1_NEG_INTEGER) || (tag == V_ASN1_NEG_ENUMERATED)) in ASN1_tag2str()
382 tag &= ~0x100; in ASN1_tag2str()
384 if (tag < 0 || tag > 30) in ASN1_tag2str()
386 return tag2str[tag]; in ASN1_tag2str()