Lines Matching refs:X509_NAME
71 static int x509_name_encode(X509_NAME *a);
94 * representing the ASN1. Unfortunately X509_NAME uses a completely different
108 IMPLEMENT_EXTERN_ASN1(X509_NAME, V_ASN1_SEQUENCE, x509_name_ff)
110 IMPLEMENT_ASN1_FUNCTIONS(X509_NAME)
111 IMPLEMENT_ASN1_DUP_FUNCTION(X509_NAME)
115 X509_NAME *ret = NULL;
116 ret = OPENSSL_malloc(sizeof(X509_NAME));
138 X509_NAME *a;
141 a = (X509_NAME *)*pval;
151 * already present in the X509_NAME structure.
164 union { X509_NAME *x; ASN1_VALUE *a; } nm = {NULL};
183 /* Convert internal representation to X509_NAME structure */
207 X509_NAME *a = (X509_NAME *)*val;
209 ret = x509_name_encode((X509_NAME *)a);
220 static int x509_name_encode(X509_NAME *a)
256 int X509_NAME_set(X509_NAME **xn, X509_NAME *name)
258 X509_NAME *in;