Searched refs:cname (Results 1 – 5 of 5) sorted by relevance
/openssl-master/include/crypto/ |
A D | evp.h | 360 #define BLOCK_CIPHER_func_ecb(cname, cprefix, kstruct, ksched) \ argument 389 #define BLOCK_CIPHER_func_cbc(cname, cprefix, kstruct, ksched) \ argument 429 BLOCK_CIPHER_func_cbc(cname, cprefix, kstruct, ksched) \ 431 BLOCK_CIPHER_func_ecb(cname, cprefix, kstruct, ksched) \ 437 static const EVP_CIPHER cname##_##mode = { \ 442 cname##_##mode##_cipher, \ 449 const EVP_CIPHER *EVP_##cname##_##mode(void) { return &cname##_##mode; } 457 #define BLOCK_CIPHER_def_cfb(cname, kstruct, nid, key_len, \ argument 464 #define BLOCK_CIPHER_def_ofb(cname, kstruct, nid, key_len, \ argument 467 BLOCK_CIPHER_def1(cname, ofb##cbits, ofb, OFB, kstruct, nid, 1, \ [all …]
|
/openssl-master/apps/ |
A D | CA.pl.in | 187 my $cname = $ARGV[0]; 188 $cname = "My Certificate" unless defined $cname; 191 . " -export -name \"$cname\" $EXTRA{pkcs12}"); 221 my $cname = $ARGV[0]; 222 if (!defined $cname) { 229 $RET = run("$CA -revoke \"$cname\"" . $reason . $EXTRA{ca});
|
/openssl-master/apps/lib/ |
A D | s_cb.c | 210 const char *cname = lookup((int)cert_type, cert_type_list, NULL); in ssl_print_client_cert_types() local 214 if (cname != NULL) in ssl_print_client_cert_types() 215 BIO_puts(bio, cname); in ssl_print_client_cert_types() 1414 const char *cname; in security_callback_debug() local 1415 cname = EC_curve_nid2nist(nid); in security_callback_debug() 1416 if (cname == NULL) in security_callback_debug() 1417 cname = OBJ_nid2sn(nid); in security_callback_debug() 1418 BIO_puts(sdb->out, cname); in security_callback_debug()
|
/openssl-master/engines/ |
A D | e_capi.c | 1220 LPSTR cname; in capi_list_containers() local 1255 cname = OPENSSL_malloc(buflen); in capi_list_containers() 1256 if (cname == NULL) { in capi_list_containers() 1263 cname[0] = 0; in capi_list_containers() 1269 if (!CryptGetProvParam(hprov, PP_ENUMCONTAINERS, (BYTE *)cname, in capi_list_containers() 1279 cname, clen, idx, flags); in capi_list_containers() 1280 if (!cname[0] && (clen == buflen)) { in capi_list_containers() 1284 BIO_printf(out, "%lu. %s\n", idx, cname); in capi_list_containers() 1291 OPENSSL_free(cname); in capi_list_containers()
|
/openssl-master/crypto/asn1/ |
A D | asn_mime.c | 240 const char *mime_prefix, *mime_eol, *cname = "smime.p7m"; in SMIME_write_ASN1_ex() local 307 cname = "smime.p7z"; in SMIME_write_ASN1_ex() 312 BIO_printf(bio, " filename=\"%s\"%s", cname, mime_eol); in SMIME_write_ASN1_ex() 316 BIO_printf(bio, " name=\"%s\"%s", cname, mime_eol); in SMIME_write_ASN1_ex()
|
Completed in 17 milliseconds