Last change
on this file since 83531 was 83531, checked in by vboxsync, 5 years ago |
setting svn:sync-process=export for openssl-1.1.1f, all files except tests
|
File size:
927 bytes
|
Line | |
---|
1 | =pod
|
---|
2 |
|
---|
3 | =head1 NAME
|
---|
4 |
|
---|
5 | SSL_SESSION_get0_peer
|
---|
6 | - get details about peer's certificate for a session
|
---|
7 |
|
---|
8 | =head1 SYNOPSIS
|
---|
9 |
|
---|
10 | #include <openssl/ssl.h>
|
---|
11 |
|
---|
12 | X509 *SSL_SESSION_get0_peer(SSL_SESSION *s);
|
---|
13 |
|
---|
14 | =head1 DESCRIPTION
|
---|
15 |
|
---|
16 | SSL_SESSION_get0_peer() returns the peer certificate associated with the session
|
---|
17 | B<s> or NULL if no peer certificate is available. The caller should not free the
|
---|
18 | returned value (unless L<X509_up_ref(3)> has also been called).
|
---|
19 |
|
---|
20 | =head1 RETURN VALUES
|
---|
21 |
|
---|
22 | SSL_SESSION_get0_peer() returns a pointer to the peer certificate or NULL if
|
---|
23 | no peer certificate is available.
|
---|
24 |
|
---|
25 | =head1 SEE ALSO
|
---|
26 |
|
---|
27 | L<ssl(7)>
|
---|
28 |
|
---|
29 | =head1 COPYRIGHT
|
---|
30 |
|
---|
31 | Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
|
---|
32 |
|
---|
33 | Licensed under the OpenSSL license (the "License"). You may not use
|
---|
34 | this file except in compliance with the License. You can obtain a copy
|
---|
35 | in the file LICENSE in the source distribution or at
|
---|
36 | L<https://www.openssl.org/source/license.html>.
|
---|
37 |
|
---|
38 | =cut
|
---|
Note:
See
TracBrowser
for help on using the repository browser.