Symbol: ASN1_TFLG_OPTIONAL
crypto/openssl/crypto/asn1/tasn_dec.c
443
isopt = (char)(seqtt->flags & ASN1_TFLG_OPTIONAL);
crypto/openssl/crypto/asn1/tasn_dec.c
485
if (seqtt->flags & ASN1_TFLG_OPTIONAL) {
crypto/openssl/crypto/asn1/tasn_enc.c
308
if (len == 0 && (tt->flags & ASN1_TFLG_OPTIONAL) == 0) {
crypto/openssl/crypto/asn1/tasn_enc.c
349
if ((tt->flags & ASN1_TFLG_OPTIONAL) == 0) {
crypto/openssl/crypto/asn1/tasn_enc.c
370
if (len == 0 && (tt->flags & ASN1_TFLG_OPTIONAL) == 0) {
crypto/openssl/crypto/asn1/tasn_new.c
216
if (tt->flags & ASN1_TFLG_OPTIONAL) {
crypto/openssl/include/openssl/asn1t.h
377
#define ASN1_OPT(stname, field, type) ASN1_EX_TYPE(ASN1_TFLG_OPTIONAL, 0, stname, field, type)
crypto/openssl/include/openssl/asn1t.h
378
#define ASN1_OPT_EMBED(stname, field, type) ASN1_EX_TYPE(ASN1_TFLG_OPTIONAL | ASN1_TFLG_EMBED, 0, stname, field, type)
crypto/openssl/include/openssl/asn1t.h
385
#define ASN1_IMP_OPT(stname, field, type, tag) ASN1_IMP_EX(stname, field, type, tag, ASN1_TFLG_OPTIONAL)
crypto/openssl/include/openssl/asn1t.h
386
#define ASN1_IMP_OPT_EMBED(stname, field, type, tag) ASN1_IMP_EX(stname, field, type, tag, ASN1_TFLG_OPTIONAL | ASN1_TFLG_EMBED)
crypto/openssl/include/openssl/asn1t.h
392
#define ASN1_EXP_OPT(stname, field, type, tag) ASN1_EXP_EX(stname, field, type, tag, ASN1_TFLG_OPTIONAL)
crypto/openssl/include/openssl/asn1t.h
393
#define ASN1_EXP_OPT_EMBED(stname, field, type, tag) ASN1_EXP_EX(stname, field, type, tag, ASN1_TFLG_OPTIONAL | ASN1_TFLG_EMBED)
crypto/openssl/include/openssl/asn1t.h
401
ASN1_EX_TYPE(ASN1_TFLG_SEQUENCE_OF | ASN1_TFLG_OPTIONAL, 0, stname, field, type)
crypto/openssl/include/openssl/asn1t.h
409
ASN1_EX_TYPE(ASN1_TFLG_SET_OF | ASN1_TFLG_OPTIONAL, 0, stname, field, type)
crypto/openssl/include/openssl/asn1t.h
420
ASN1_IMP_EX(stname, field, type, tag, ASN1_TFLG_SET_OF | ASN1_TFLG_OPTIONAL)
crypto/openssl/include/openssl/asn1t.h
423
ASN1_EXP_EX(stname, field, type, tag, ASN1_TFLG_SET_OF | ASN1_TFLG_OPTIONAL)
crypto/openssl/include/openssl/asn1t.h
429
ASN1_IMP_EX(stname, field, type, tag, ASN1_TFLG_SEQUENCE_OF | ASN1_TFLG_OPTIONAL)
crypto/openssl/include/openssl/asn1t.h
435
ASN1_EXP_EX(stname, field, type, tag, ASN1_TFLG_SEQUENCE_OF | ASN1_TFLG_OPTIONAL)
crypto/openssl/include/openssl/asn1t.h
443
ASN1_EXP_EX(stname, field, type, tag, ASN1_TFLG_OPTIONAL | ASN1_TFLG_NDEF)