.\" -*- 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_STORE_CTX_GET_BY_SUBJECT 3ssl" .TH X509_STORE_CTX_GET_BY_SUBJECT 3ssl 2024-04-28 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_STORE_CTX_get_by_subject, X509_STORE_CTX_get_obj_by_subject \&\- X509 and X509_CRL lookup functions .SH SYNOPSIS .IX Header "SYNOPSIS" .Vb 1 \& #include \& \& int X509_STORE_CTX_get_by_subject(const X509_STORE_CTX *vs, \& X509_LOOKUP_TYPE type, \& const X509_NAME *name, X509_OBJECT *ret); \& X509_OBJECT *X509_STORE_CTX_get_obj_by_subject(X509_STORE_CTX *vs, \& X509_LOOKUP_TYPE type, \& const X509_NAME *name); .Ve .SH DESCRIPTION .IX Header "DESCRIPTION" \&\fBX509_STORE_CTX_get_by_subject()\fR tries to find an object of given \fItype\fR, which may be \fBX509_LU_X509\fR or \fBX509_LU_CRL\fR, and subject \fIname\fR from the store in the provided store context \fIvs\fR. If found and \fIret\fR is not NULL, it increments the reference count and stores the looked up object in \fIret\fR. .PP \&\fBX509_STORE_CTX_get_obj_by_subject()\fR is like \fBX509_STORE_CTX_get_by_subject()\fR but returns the found object on success, else NULL. .SH "RETURN VALUES" .IX Header "RETURN VALUES" \&\fBX509_STORE_CTX_get_by_subject()\fR returns 1 if the lookup was successful, else 0. .PP \&\fBX509_STORE_CTX_get_obj_by_subject()\fR returns an object on success, else NULL. .SH "SEE ALSO" .IX Header "SEE ALSO" \&\fBX509_LOOKUP_meth_set_get_by_subject\fR\|(3), \&\fBX509_LOOKUP_by_subject\fR\|(3) .SH COPYRIGHT .IX Header "COPYRIGHT" Copyright 2022 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 .