Home
last modified time | relevance | path

Searched refs:alias (Results 1 – 25 of 46) sorted by relevance

12

/openssl/crypto/x509/
H A Dx_x509a.c29 ASN1_OPT(X509_CERT_AUX, alias, ASN1_UTF8STRING),
54 if (!x || !x->aux || !x->aux->alias) in X509_alias_set1()
56 ASN1_UTF8STRING_free(x->aux->alias); in X509_alias_set1()
57 x->aux->alias = NULL; in X509_alias_set1()
62 if (aux->alias == NULL && (aux->alias = ASN1_UTF8STRING_new()) == NULL) in X509_alias_set1()
64 return ASN1_STRING_set(aux->alias, name, len); in X509_alias_set1()
87 if (!x->aux || !x->aux->alias) in X509_alias_get0()
90 *len = x->aux->alias->length; in X509_alias_get0()
91 return x->aux->alias->data; in X509_alias_get0()
H A Dt_x509.c350 const unsigned char *alias, *keyid; in X509_aux_print() local
387 alias = X509_alias_get0(x, &i); in X509_aux_print()
388 if (alias) in X509_aux_print()
389 BIO_printf(out, "%*sAlias: %.*s\n", indent, "", i, alias); in X509_aux_print()
/openssl/util/perl/OpenSSL/
H A DOrdinals.pm495 my $alias = $self->{aliases}->{$name};
500 push @returns, $self->add_alias($source, $alias->{name}, $name, @{$alias->{defs}})
501 if defined $alias;
520 my $alias = shift; # This is the alias being added
528 croak "You're kidding me... $alias == $name" if $alias eq $name;
536 my $f_byalias = f_name($alias);
544 croak "Alias already exists ($alias => $name)"
550 name => $alias, defs => [ @defs ] };
553 "\tSet future alias $alias => $name\n"
571 name => $alias,
[all …]
/openssl/crypto/objects/
H A Do_names.c155 int num = 0, alias; in OBJ_NAME_get() local
165 alias = type & OBJ_NAME_ALIAS; in OBJ_NAME_get()
175 if ((ret->alias) && !alias) { in OBJ_NAME_get()
192 int alias, ok = 0; in OBJ_NAME_add() local
197 alias = type & OBJ_NAME_ALIAS; in OBJ_NAME_add()
205 onp->alias = alias; in OBJ_NAME_add()
/openssl/apps/
H A Dstoreutl.c85 char *alias = NULL, *digestname = NULL; in storeutl_main() local
238 if (alias != NULL) { in storeutl_main()
243 if ((alias = OPENSSL_strdup(opt_arg())) == NULL) { in storeutl_main()
301 if ((search = OSSL_STORE_SEARCH_by_alias(alias)) == NULL) { in storeutl_main()
327 OPENSSL_free(alias); in storeutl_main()
H A Dx509.c273 char *CAkeyfile = NULL, *CAserial = NULL, *pubkeyfile = NULL, *alias = NULL; in x509_main() local
453 alias = opt_arg(); in x509_main()
788 if (alias) in x509_main()
789 X509_alias_set1(x, (unsigned char *)alias, -1); in x509_main()
/openssl/doc/man3/
H A DOSSL_STORE_SEARCH.pod32 OSSL_STORE_SEARCH *OSSL_STORE_SEARCH_by_alias(const char *alias);
71 and serial number pair, a key fingerprint, and an alias (for example a friendly
129 This criterion supports a search by match of an alias of some kind.
130 The alias in itself is a simple C string.
132 and the actual alias is retrieved with OSSL_STORE_SEARCH_get0_string().
H A DSSL_get_peer_tmp_key.pod24 SSL_get_server_tmp_key() is a backwards compatibility alias for
H A DOSSL_CMP_MSG_http_perform.pod20 any "CMP alias" optionally specified via L<OSSL_CMP_CTX_set1_serverPath(3)>.
H A DSSL_get_peer_certificate.pod42 SSL_get_peer_certificate() is an alias of SSL_get1_peer_certificate().
H A DPKCS12_add_cert.pod48 If a certificate contains an I<alias> or a I<keyid> then this will be
H A DPKCS12_parse.pod34 certificate will be stored in the B<alias> and B<keyid> attributes of the
H A DEVP_PKEY_get_size.pod80 The old names are kept as non-deprecated alias macros.
H A DEVP_PKEY_check.pod47 EVP_PKEY_check() is an alias for the EVP_PKEY_pairwise_check() function.
/openssl/doc/man1/
H A Dopenssl-storeutl.pod.in27 [B<-alias> I<arg>]
107 =item B<-alias> I<arg>
109 Search for an object having the given alias.
H A Dopenssl-x509.pod.in31 [B<-alias>]
184 This option is an alias of B<-key>.
212 Note: the B<-alias> and B<-purpose> options are also printing options
243 =item B<-alias>
245 Prints the certificate "alias" (nickname), if any.
527 and prohibited uses of the certificate and possibly an "alias" (nickname).
556 Sets the "alias" of the certificate. This will allow the certificate
734 Set a certificate to be trusted for SSL client use and change set its alias to
779 keeping the old name as an alias.
H A Dopenssl-cmds.pod.in145 to be available at I<cmd>(1). Later, the alias B<openssl-I<cmd>>(1) was
/openssl/crypto/evp/
H A Dnames.c180 if (nm->alias) in do_all_cipher_fn()
223 if (nm->alias) in do_all_md_fn()
/openssl/doc/man7/
H A DEVP_KDF-X942-CONCAT.pod18 This is an alias for "X963KDF".
H A Dprovider-storemgmt.pod160 =item "alias" (B<OSSL_STORE_PARAM_ALIAS>) <UTF8 string>
163 alias (some call it a "friendly name").
/openssl/VMS/
H A Dopenssl_shutdown.com.in9 $ ! P2 If the value is "NOALIASES", no alias logical names are
/openssl/include/openssl/
H A Dobjects.h45 int alias; member
H A Devp.h680 # define EVP_add_cipher_alias(n,alias) \ argument
681 OBJ_NAME_add((alias),OBJ_NAME_TYPE_CIPHER_METH|OBJ_NAME_ALIAS,(n))
682 # define EVP_add_digest_alias(n,alias) \ argument
683 OBJ_NAME_add((alias),OBJ_NAME_TYPE_MD_METH|OBJ_NAME_ALIAS,(n))
684 # define EVP_delete_cipher_alias(alias) \ argument
685 OBJ_NAME_remove(alias,OBJ_NAME_TYPE_CIPHER_METH|OBJ_NAME_ALIAS);
686 # define EVP_delete_digest_alias(alias) \ argument
687 OBJ_NAME_remove(alias,OBJ_NAME_TYPE_MD_METH|OBJ_NAME_ALIAS);
H A Dstore.h226 OSSL_STORE_SEARCH *OSSL_STORE_SEARCH_by_alias(const char *alias);
/openssl/crypto/store/
H A Dstore_lib.c914 OSSL_STORE_SEARCH *OSSL_STORE_SEARCH_by_alias(const char *alias) in OSSL_STORE_SEARCH_by_alias() argument
924 search->string = (const unsigned char *)alias; in OSSL_STORE_SEARCH_by_alias()
925 search->stringlength = strlen(alias); in OSSL_STORE_SEARCH_by_alias()

Completed in 138 milliseconds

12