Symbol: OBJ_sn2nid
crypto/openssl/apps/cmp.c
2292
if ((opt_infotype = OBJ_sn2nid(id_buf)) == NID_undef) {
crypto/openssl/apps/lib/engine.c
171
eng = ENGINE_get_digest_engine(OBJ_sn2nid(name));
crypto/openssl/apps/lib/engine.c
185
eng = ENGINE_get_cipher_engine(OBJ_sn2nid(name));
crypto/openssl/apps/pkeyutl.c
698
int kdfnid = OBJ_sn2nid(kdfalg);
crypto/openssl/crypto/asn1/asn_mstbl.c
65
nid = OBJ_sn2nid(name);
crypto/openssl/crypto/dh/dh_pmeth.c
240
int nid = OBJ_sn2nid(value);
crypto/openssl/crypto/ec/ec_pmeth.c
384
nid = OBJ_sn2nid(value);
crypto/openssl/crypto/evp/ctrl_params_translate.c
1173
ctx->p1 = OBJ_sn2nid(p2);
crypto/openssl/crypto/evp/p_lib.c
1081
if ((type = EVP_PKEY_type(OBJ_sn2nid(name))) != NID_undef)
crypto/openssl/crypto/evp/p_lib.c
1314
*nid = OBJ_sn2nid(mdname);
crypto/openssl/crypto/objects/obj_dat.c
430
if ((nid = OBJ_sn2nid(s)) != NID_undef
crypto/openssl/crypto/objects/obj_dat.c
788
if ((sn != NULL && OBJ_sn2nid(sn) != NID_undef)
crypto/openssl/crypto/x509/v3_conf.c
45
ret = do_ext_nconf(conf, ctx, OBJ_sn2nid(name), crit, value);
crypto/openssl/include/openssl/objects.h
74
int OBJ_sn2nid(const char *s);
crypto/openssl/ssl/t1_lib.c
3709
*phash = OBJ_sn2nid(str);
crypto/openssl/test/asn1_internal_test.c
243
|| !TEST_int_ne(OBJ_sn2nid(sn_prefix "1"), NID_undef)
crypto/openssl/test/asn1_internal_test.c
247
|| !TEST_int_ne(OBJ_sn2nid(sn_prefix "3"), NID_undef)
crypto/openssl/test/asn1_internal_test.c
251
|| !TEST_int_ne(OBJ_sn2nid(sn_prefix "5"), NID_undef)
crypto/openssl/test/asn1_internal_test.c
256
|| !TEST_int_ne(OBJ_sn2nid(sn_prefix "7"), NID_undef)
crypto/openssl/test/evp_pkey_provided_test.c
1722
if (!TEST_ptr(group = EC_GROUP_new_by_curve_name(OBJ_sn2nid(curve)))
crypto/openssl/test/fake_rsaprov.c
879
ctx->desc->evp_type = OBJ_sn2nid(tls_name);
crypto/openssl/test/helpers/ssl_test_ctx.c
525
nid = OBJ_sn2nid(value);
crypto/openssl/test/helpers/ssl_test_ctx.c
591
nid = OBJ_sn2nid(value);
crypto/openssl/test/tls-provider.c
1625
if (k->tls_name && OBJ_sn2nid(k->tls_name) != nid) {
crypto/openssl/test/tls-provider.c
1825
int type = OBJ_sn2nid(typestr);
crypto/openssl/test/tls-provider.c
2263
ctx->desc->evp_type = OBJ_sn2nid(tls_name);
crypto/openssl/test/upcallstest.c
115
|| !TEST_int_eq(digestnid, OBJ_sn2nid(DIGEST_SN))
crypto/openssl/test/upcallstest.c
129
sigalgnid = OBJ_sn2nid(SIGALG_SN);
crypto/openssl/test/upcallstest.c
130
digestnid = OBJ_sn2nid(DIGEST_SN);
crypto/openssl/test/upcallstest.c
135
if ((OBJ_find_sigid_by_algs(&foundsid, OBJ_sn2nid("SHA512"), signid)) && (foundsid == sigalgnid))
crypto/openssl/test/upcallstest.c
139
sigalgnid = OBJ_sn2nid(NODIG_SIGALG_SN);
crypto/openssl/test/upcallstest.c
140
digestnid = OBJ_sn2nid("SHA512");