Symbol: OBJ_nid2sn
crypto/libressl/apps/openssl/ca.c
1067
ca_config.md = (char *) OBJ_nid2sn(def_nid);
crypto/libressl/apps/openssl/crl.c
391
OBJ_nid2sn(EVP_MD_type(digest)));
crypto/libressl/apps/openssl/ecparam.c
322
sname = OBJ_nid2sn(curves[n].nid);
crypto/libressl/apps/openssl/s_cb.c
288
cname = OBJ_nid2sn(nid);
crypto/libressl/apps/openssl/s_cb.c
294
BIO_printf(out, "%s, %d bits\n", OBJ_nid2sn(EVP_PKEY_id(pkey)),
crypto/libressl/apps/openssl/x509.c
1199
OBJ_nid2sn(EVP_MD_type(fdig)));
crypto/libressl/crypto/asn1/a_object.c
393
name = OBJ_nid2sn(nid);
crypto/libressl/crypto/asn1/a_strex.c
524
objbuf = OBJ_nid2sn(fn_nid);
crypto/libressl/crypto/ec/eck_prn.c
188
if (BIO_printf(bp, "ASN1 OID: %s", OBJ_nid2sn(nid)) <= 0)
crypto/libressl/crypto/ec/eck_prn.c
260
if (BIO_printf(bp, "Field Type: %s\n", OBJ_nid2sn(tmp_nid))
crypto/libressl/crypto/ec/eck_prn.c
274
OBJ_nid2sn(basis_type)) <= 0)
crypto/libressl/crypto/evp/names.c
102
r = OBJ_NAME_add(OBJ_nid2sn(md->pkey_type),
crypto/libressl/crypto/evp/names.c
75
r = OBJ_NAME_add(OBJ_nid2sn(c->nid), OBJ_NAME_TYPE_CIPHER_METH,
crypto/libressl/crypto/evp/names.c
91
name = OBJ_nid2sn(md->type);
crypto/libressl/crypto/pem/pem_info.c
306
objstr = OBJ_nid2sn(EVP_CIPHER_nid(enc));
crypto/libressl/crypto/pem/pem_info.c
335
objstr = OBJ_nid2sn(
crypto/libressl/crypto/pem/pem_lib.c
358
objstr = OBJ_nid2sn(EVP_CIPHER_nid(enc));
crypto/libressl/crypto/x509/x509_conf.c
119
return v3_generic_extension(OBJ_nid2sn(ext_nid),
crypto/libressl/crypto/x509/x509_conf.c
153
OBJ_nid2sn(ext_nid), value);
crypto/libressl/crypto/x509/x509_conf.c
171
ERR_asprintf_error_data("name=%s", OBJ_nid2sn(ext_nid));
crypto/libressl/crypto/x509/x509_obj.c
106
if ((n == NID_undef) || ((s = OBJ_nid2sn(n)) == NULL)) {
crypto/libressl/include/openssl/evp.h
335
#define EVP_get_digestbynid(a) EVP_get_digestbyname(OBJ_nid2sn(a))
crypto/libressl/include/openssl/evp.h
337
#define EVP_get_cipherbynid(a) EVP_get_cipherbyname(OBJ_nid2sn(a))
crypto/libressl/include/openssl/evp.h
342
#define EVP_MD_name(e) OBJ_nid2sn(EVP_MD_nid(e))
crypto/libressl/include/openssl/evp.h
375
#define EVP_CIPHER_name(e) OBJ_nid2sn(EVP_CIPHER_nid(e))
crypto/libressl/include/openssl/objects.h
1005
const char * OBJ_nid2sn(int n);