.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "X509_GET_SUBJECT_NAME 3SSL" .TH X509_GET_SUBJECT_NAME 3SSL 2024-04-11 3.3.0 OpenSSL .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME X509_NAME_hash_ex, X509_NAME_hash, X509_get_subject_name, X509_set_subject_name, X509_subject_name_hash, X509_get_issuer_name, X509_set_issuer_name, X509_issuer_name_hash, X509_REQ_get_subject_name, X509_REQ_set_subject_name, X509_CRL_get_issuer, X509_CRL_set_issuer_name \- get X509_NAME hashes or get and set issuer or subject names .SH SYNOPSIS .IX Header "SYNOPSIS" .Vb 1 \& #include \& \& unsigned long X509_NAME_hash_ex(const X509_NAME *x, OSSL_LIB_CTX *libctx, \& const char *propq, int *ok); \& \& X509_NAME *X509_get_subject_name(const X509 *x); \& int X509_set_subject_name(X509 *x, const X509_NAME *name); \& unsigned long X509_subject_name_hash(X509 *x); \& \& X509_NAME *X509_get_issuer_name(const X509 *x); \& int X509_set_issuer_name(X509 *x, const X509_NAME *name); \& unsigned long X509_issuer_name_hash(X509 *x); \& \& X509_NAME *X509_REQ_get_subject_name(const X509_REQ *req); \& int X509_REQ_set_subject_name(X509_REQ *req, const X509_NAME *name); \& \& X509_NAME *X509_CRL_get_issuer(const X509_CRL *crl); \& int X509_CRL_set_issuer_name(X509_CRL *x, const X509_NAME *name); .Ve .PP The following macro has been deprecated since OpenSSL 3.0, and can be hidden entirely by defining \fBOPENSSL_API_COMPAT\fR with a suitable version value, see \fBopenssl_user_macros\fR\|(7): .PP .Vb 1 \& #define X509_NAME_hash(x) X509_NAME_hash_ex(x, NULL, NULL, NULL) .Ve .SH DESCRIPTION .IX Header "DESCRIPTION" \&\fBX509_NAME_hash_ex()\fR returns a hash value of name \fIx\fR or 0 on failure, using any given library context \fIlibctx\fR and property query \fIpropq\fR. The \fIok\fR result argument may be NULL or else is used to return 1 for success and 0 for failure. Failure may happen on malloc error or if no SHA1 implementation is available. .PP \&\fBX509_NAME_hash()\fR returns a hash value of name \fIx\fR or 0 on failure, using the default library context and default property query. .PP \&\fBX509_get_subject_name()\fR returns the subject name of certificate \fIx\fR. The returned value is an internal pointer which \fBMUST NOT\fR be freed. .PP \&\fBX509_set_subject_name()\fR sets the issuer name of certificate \fIx\fR to \&\fIname\fR. The \fIname\fR parameter is copied internally and should be freed up when it is no longer needed. .PP \&\fBX509_subject_name_hash()\fR returns a hash value of the subject name of certificate \fIx\fR. .PP \&\fBX509_get_issuer_name()\fR, \fBX509_set_issuer_name()\fR, and \fBX509_issuer_name_hash()\fR are identical to \&\fBX509_get_subject_name()\fR, \fBX509_set_subject_name()\fR, and \fBX509_subject_name_hash()\fR except they relate to the issuer name of \fIx\fR. .PP Similarly \fBX509_REQ_get_subject_name()\fR, \fBX509_REQ_set_subject_name()\fR, \&\fBX509_CRL_get_issuer()\fR and \fBX509_CRL_set_issuer_name()\fR get or set the subject or issuer names of certificate requests of CRLs respectively. .SH "RETURN VALUES" .IX Header "RETURN VALUES" \&\fBX509_get_subject_name()\fR, \fBX509_get_issuer_name()\fR, \fBX509_REQ_get_subject_name()\fR and \fBX509_CRL_get_issuer()\fR return an \fBX509_NAME\fR pointer. .PP \&\fBX509_NAME_hash_ex()\fR, \fBX509_NAME_hash()\fR, \&\fBX509_subject_name_hash()\fR and \fBX509_issuer_name_hash()\fR return the first four bytes of the SHA1 hash value, converted to \fBunsigned long\fR in little endian order, or 0 on failure. .PP \&\fBX509_set_subject_name()\fR, \fBX509_set_issuer_name()\fR, \fBX509_REQ_set_subject_name()\fR and \fBX509_CRL_set_issuer_name()\fR return 1 for success and 0 for failure. .SH BUGS .IX Header "BUGS" In case \fBX509_NAME_hash()\fR, \fBX509_subject_name_hash()\fR, or \fBX509_issuer_name_hash()\fR returns 0 it remains unclear if this is the real hash value or due to failure. Better use \fBX509_NAME_hash_ex()\fR instead. .SH "SEE ALSO" .IX Header "SEE ALSO" \&\fBd2i_X509\fR\|(3), \&\fBERR_get_error\fR\|(3), \fBd2i_X509\fR\|(3) \&\fBX509_CRL_get0_by_serial\fR\|(3), \&\fBX509_get0_signature\fR\|(3), \&\fBX509_get_ext_d2i\fR\|(3), \&\fBX509_get_extension_flags\fR\|(3), \&\fBX509_get_pubkey\fR\|(3), \&\fBX509_NAME_add_entry_by_txt\fR\|(3), \&\fBX509_NAME_ENTRY_get_object\fR\|(3), \&\fBX509_NAME_get_index_by_NID\fR\|(3), \&\fBX509_NAME_print_ex\fR\|(3), \&\fBX509_new\fR\|(3), \&\fBX509_sign\fR\|(3), \&\fBX509V3_get_d2i\fR\|(3), \&\fBX509_verify_cert\fR\|(3) .SH HISTORY .IX Header "HISTORY" \&\fBX509_REQ_get_subject_name()\fR is a function in OpenSSL 1.1.0 and a macro in earlier versions. .PP \&\fBX509_CRL_get_issuer()\fR is a function in OpenSSL 1.1.0. It was previously added in OpenSSL 1.0.0 as a macro. .PP \&\fBX509_NAME_hash()\fR was turned into a macro and deprecated in OpenSSL 3.0. .SH COPYRIGHT .IX Header "COPYRIGHT" Copyright 2015\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the Apache License 2.0 (the "License"). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at .