Home | History | Annotate | Download | only in asn1

Lines Matching refs:stmp

923 	ASN1_STRING *stmp;
1031 stmp = ASN1_STRING_type_new(utype);
1032 if (!stmp)
1038 *pval = (ASN1_VALUE *)stmp;
1042 stmp = (ASN1_STRING *)*pval;
1043 stmp->type = utype;
1048 if (stmp->data)
1049 OPENSSL_free(stmp->data);
1050 stmp->data = (unsigned char *)cont; /* UGLY CAST! RL */
1051 stmp->length = len;
1056 if (!ASN1_STRING_set(stmp, cont, len))
1060 ASN1_STRING_free(stmp);