]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man3/SSL_SESSION_set1_id.pod
Cross-linked the man(1) pages of kdf & pkeyutl.
[thirdparty/openssl.git] / doc / man3 / SSL_SESSION_set1_id.pod
CommitLineData
fddfc0af
RG
1=pod
2
3=head1 NAME
4
b31db505
MC
5SSL_SESSION_get_id,
6SSL_SESSION_set1_id
7- get and set the SSL session ID
fddfc0af
RG
8
9=head1 SYNOPSIS
10
11 #include <openssl/ssl.h>
12
b31db505
MC
13 const unsigned char *SSL_SESSION_get_id(const SSL_SESSION *s,
14 unsigned int *len)
fddfc0af
RG
15 int SSL_SESSION_set1_id(SSL_SESSION *s, const unsigned char *sid,
16 unsigned int sid_len);
17
18=head1 DESCRIPTION
19
b31db505
MC
20SSL_SESSION_get_id() returns a pointer to the internal session id value for the
21session B<s>. The length of the id in bytes is stored in B<*len>. The length may
22be 0. The caller should not free the returned pointer directly.
23
17b60280 24SSL_SESSION_set1_id() sets the session ID for the B<ssl> SSL/TLS session
fddfc0af
RG
25to B<sid> of length B<sid_len>.
26
27=head1 RETURN VALUES
28
b31db505 29SSL_SESSION_get_id() returns a pointer to the session id value.
fddfc0af
RG
30SSL_SESSION_set1_id() returns 1 for success and 0 for failure, for example
31if the supplied session ID length exceeds B<SSL_MAX_SSL_SESSION_ID_LENGTH>.
32
33=head1 SEE ALSO
34
b97fdb57 35L<ssl(7)>
fddfc0af
RG
36
37=head1 HISTORY
38
fc5ecadd 39The SSL_SESSION_set1_id() function was added in OpenSSL 1.1.0.
fddfc0af
RG
40
41=head1 COPYRIGHT
42
43Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
44
4746f25a 45Licensed under the Apache License 2.0 (the "License"). You may not use
fddfc0af
RG
46this file except in compliance with the License. You can obtain a copy
47in the file LICENSE in the source distribution or at
48L<https://www.openssl.org/source/license.html>.
49
50=cut