Home | History | Annotate | Download | only in x509

Lines Matching full:atmp

650 	ASN1_TYPE *atmp = NULL;
659 if (!(atmp = ASN1_TYPE_new()))
688 if (!X509V3_get_value_bool(&vtmp, &atmp->value.boolean))
702 if (!(atmp->value.integer = s2i_ASN1_INTEGER(NULL, (char *)str)))
715 if (!(atmp->value.object = OBJ_txt2obj(str, 0)))
729 if (!(atmp->value.asn1_string = ASN1_STRING_new()))
734 if (!ASN1_STRING_set(atmp->value.asn1_string, str, -1))
739 atmp->value.asn1_string->type = utype;
740 if (!ASN1_TIME_check(atmp->value.asn1_string))
769 if (ASN1_mbstring_copy(&atmp->value.asn1_string, (unsigned char *)str,
783 if (!(atmp->value.asn1_string = ASN1_STRING_new()))
798 atmp->value.asn1_string->data = rdata;
799 atmp->value.asn1_string->length = rdlen;
800 atmp->value.asn1_string->type = utype;
804 ASN1_STRING_set(atmp->value.asn1_string, str, -1);
807 if (!CONF_parse_list(str, ',', 1, bitstr_cb, atmp->value.bit_string))
823 atmp->value.asn1_string->flags
825 atmp->value.asn1_string->flags
839 atmp->type = utype;
840 return atmp;
847 ASN1_TYPE_free(atmp);