Home | History | Annotate | Download | only in asn1

Lines Matching refs:stmp

924 	ASN1_STRING *stmp;
1032 stmp = ASN1_STRING_type_new(utype);
1033 if (!stmp)
1039 *pval = (ASN1_VALUE *)stmp;
1043 stmp = (ASN1_STRING *)*pval;
1044 stmp->type = utype;
1049 if (stmp->data)
1050 OPENSSL_free(stmp->data);
1051 stmp->data = (unsigned char *)cont; /* UGLY CAST! RL */
1052 stmp->length = len;
1057 if (!ASN1_STRING_set(stmp, cont, len))
1061 ASN1_STRING_free(stmp);