summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2024-02-13 11:29:53 +0000
committerTomas Mraz <tomas@openssl.org>2024-02-14 18:14:52 +0100
commit12c0d72c4a82804f3c2d234ea9ea4e3a2fbb257b (patch)
tree90b05d9d131f6b5b71e200de88e81de09a8a3be3 /test
parent53273092f6d64e91f4116bb781eb74dcc98a25dc (diff)
Fix SSL_export_keying_material for QUIC
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/23567) (cherry picked from commit 498d4e4c4f4a1e220cfa64cfcc76174e2f656fd0)
Diffstat (limited to 'test')
-rw-r--r--test/quicapitest.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/test/quicapitest.c b/test/quicapitest.c
index 41cf0fc7a8..9a1034b7b7 100644
--- a/test/quicapitest.c
+++ b/test/quicapitest.c
@@ -53,7 +53,7 @@ static int test_quic_write_read(int idx)
SSL *clientquic = NULL;
QUIC_TSERVER *qtserv = NULL;
int j, k, ret = 0;
- unsigned char buf[20];
+ unsigned char buf[20], scratch[64];
static char *msg = "A test message";
size_t msglen = strlen(msg);
size_t numbytes = 0;
@@ -153,6 +153,12 @@ static int test_quic_write_read(int idx)
goto end;
}
+ /* Test that exporters work. */
+ if (!TEST_true(SSL_export_keying_material(clientquic, scratch,
+ sizeof(scratch), "test", 4, (unsigned char *)"ctx", 3,
+ 1)))
+ goto end;
+
if (sess == NULL) {
/* We didn't supply a session so we're not expecting resumption */
if (!TEST_false(SSL_session_reused(clientquic)))