2001-02-02 14:40:52 +00:00
|
|
|
=pod
|
|
|
|
|
|
|
|
=head1 NAME
|
2001-02-16 01:44:24 +00:00
|
|
|
|
2021-01-27 14:23:33 -05:00
|
|
|
d2i_SSL_SESSION, d2i_SSL_SESSION_ex, i2d_SSL_SESSION - convert SSL_SESSION object from/to ASN1 representation
|
2001-02-02 14:40:52 +00:00
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
|
|
|
#include <openssl/ssl.h>
|
|
|
|
|
2017-01-20 19:58:49 +01:00
|
|
|
SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a, const unsigned char **pp,
|
|
|
|
long length);
|
2021-01-27 14:23:33 -05:00
|
|
|
SSL_SESSION *d2i_SSL_SESSION_ex(SSL_SESSION **a, const unsigned char **pp,
|
|
|
|
long length, OSSL_LIB_CTX *libctx,
|
|
|
|
const char *propq);
|
2001-02-03 11:02:02 +00:00
|
|
|
int i2d_SSL_SESSION(SSL_SESSION *in, unsigned char **pp);
|
2001-02-02 14:40:52 +00:00
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
2016-06-07 15:49:08 -04:00
|
|
|
These functions decode and encode an SSL_SESSION object.
|
|
|
|
For encoding details see L<d2i_X509(3)>.
|
2001-10-12 12:29:16 +00:00
|
|
|
|
|
|
|
SSL_SESSION objects keep internal link information about the session cache
|
|
|
|
list, when being inserted into one SSL_CTX object's session cache.
|
|
|
|
One SSL_SESSION object, regardless of its reference count, must therefore
|
|
|
|
only be used with one SSL_CTX object (and the SSL objects created
|
|
|
|
from this SSL_CTX object).
|
2001-02-02 14:40:52 +00:00
|
|
|
|
|
|
|
=head1 RETURN VALUES
|
|
|
|
|
2021-01-27 14:23:33 -05:00
|
|
|
d2i_SSL_SESSION() and d2i_SSL_SESSION_ex() return a pointer to the newly
|
|
|
|
allocated SSL_SESSION object.
|
|
|
|
In case of failure the NULL-pointer is returned and the error message
|
2001-02-02 14:40:52 +00:00
|
|
|
can be retrieved from the error stack.
|
|
|
|
|
|
|
|
i2d_SSL_SESSION() returns the size of the ASN1 representation in bytes.
|
|
|
|
When the session is not valid, B<0> is returned and no operation is performed.
|
|
|
|
|
|
|
|
=head1 SEE ALSO
|
|
|
|
|
2016-11-11 09:33:09 +01:00
|
|
|
L<ssl(7)>, L<SSL_SESSION_free(3)>,
|
2016-06-07 15:49:08 -04:00
|
|
|
L<SSL_CTX_sess_set_get_cb(3)>,
|
|
|
|
L<d2i_X509(3)>
|
2001-02-02 14:40:52 +00:00
|
|
|
|
2024-12-12 09:01:55 +01:00
|
|
|
=head1 HISTORY
|
|
|
|
|
|
|
|
The function d2i_SSL_SESSION_ex() was added in OpenSSL 3.2.
|
|
|
|
|
2016-05-18 11:44:05 -04:00
|
|
|
=head1 COPYRIGHT
|
|
|
|
|
2024-12-12 09:01:55 +01:00
|
|
|
Copyright 2001-2024 The OpenSSL Project Authors. All Rights Reserved.
|
2016-05-18 11:44:05 -04:00
|
|
|
|
2018-12-06 14:04:44 +01:00
|
|
|
Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 11:44:05 -04:00
|
|
|
this file except in compliance with the License. You can obtain a copy
|
|
|
|
in the file LICENSE in the source distribution or at
|
|
|
|
L<https://www.openssl.org/source/license.html>.
|
|
|
|
|
|
|
|
=cut
|