Lines Matching refs:algorithm
19 ASN1_SIMPLE(X509_ALGOR, algorithm, ASN1_OBJECT),
40 ASN1_OBJECT_free(alg->algorithm);
41 alg->algorithm = aobj;
64 alg->algorithm = NULL; /* precaution to prevent double free */ in ossl_X509_ALGOR_from_nid()
76 *paobj = algor->algorithm; in X509_ALGOR_get0()
100 rv = OBJ_cmp(a->algorithm, b->algorithm); in X509_ALGOR_cmp()
113 if (dest->algorithm) in X509_ALGOR_copy()
114 ASN1_OBJECT_free(dest->algorithm); in X509_ALGOR_copy()
115 dest->algorithm = NULL; in X509_ALGOR_copy()
121 if (src->algorithm) in X509_ALGOR_copy()
122 if ((dest->algorithm = OBJ_dup(src->algorithm)) == NULL) in X509_ALGOR_copy()
163 md = EVP_get_digestbyobj(alg->algorithm); in ossl_x509_algor_get_md()
171 if (OBJ_obj2nid(alg->algorithm) != NID_mgf1) in ossl_x509_algor_mgf1_decode()