mirror of
https://github.com/acidanthera/audk.git
synced 2025-04-08 17:05:09 +02:00
openssl: add more stubs for openssl 3.2.x
openssl-3.2.2 got a few more tls config hooks, add stubs for them. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
53cea8efd1
commit
005f4c6b5e
@ -515,3 +515,51 @@ tls_construct_stoc_psk (
|
||||
{
|
||||
return EXT_RETURN_FAIL;
|
||||
}
|
||||
|
||||
EXT_RETURN
|
||||
tls_construct_stoc_client_cert_type (
|
||||
SSL_CONNECTION *sc,
|
||||
WPACKET *pkt,
|
||||
unsigned int context,
|
||||
X509 *x,
|
||||
size_t chainidx
|
||||
)
|
||||
{
|
||||
return EXT_RETURN_FAIL;
|
||||
}
|
||||
|
||||
int
|
||||
tls_parse_ctos_client_cert_type (
|
||||
SSL_CONNECTION *sc,
|
||||
PACKET *pkt,
|
||||
unsigned int context,
|
||||
X509 *x,
|
||||
size_t chainidx
|
||||
)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
EXT_RETURN
|
||||
tls_construct_stoc_server_cert_type (
|
||||
SSL_CONNECTION *sc,
|
||||
WPACKET *pkt,
|
||||
unsigned int context,
|
||||
X509 *x,
|
||||
size_t chainidx
|
||||
)
|
||||
{
|
||||
return EXT_RETURN_FAIL;
|
||||
}
|
||||
|
||||
int
|
||||
tls_parse_ctos_server_cert_type (
|
||||
SSL_CONNECTION *sc,
|
||||
PACKET *pkt,
|
||||
unsigned int context,
|
||||
X509 *x,
|
||||
size_t chainidx
|
||||
)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user