mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-30 02:37:28 +02:00
Merge pull request #3843 from julek-wolfssl/dtls-reset-seq-num
Correctly move the Tx sequence number forward
This commit is contained in:
@ -29785,13 +29785,8 @@ static int DefTicketEncCb(WOLFSSL* ssl, byte key_name[WOLFSSL_TICKET_NAME_SZ],
|
||||
/* are we in scr */
|
||||
if (IsEncryptionOn(ssl, 1)) {
|
||||
byte* input;
|
||||
int inputSz = HANDSHAKE_HEADER_SZ + length; /* build msg adds rec hdr */
|
||||
int recordHeaderSz = RECORD_HEADER_SZ;
|
||||
|
||||
if (ssl->options.dtls) {
|
||||
recordHeaderSz += DTLS_RECORD_EXTRA;
|
||||
inputSz += DTLS_HANDSHAKE_EXTRA;
|
||||
}
|
||||
int inputSz = DTLS_HANDSHAKE_HEADER_SZ + length; /* build msg adds rec hdr */
|
||||
int recordHeaderSz = DTLS_RECORD_HEADER_SZ;
|
||||
|
||||
input = (byte*)XMALLOC(inputSz, ssl->heap, DYNAMIC_TYPE_IN_BUFFER);
|
||||
if (input == NULL)
|
||||
@ -29807,6 +29802,7 @@ static int DefTicketEncCb(WOLFSSL* ssl, byte key_name[WOLFSSL_TICKET_NAME_SZ],
|
||||
}
|
||||
|
||||
ssl->buffers.outputBuffer.length += sendSz;
|
||||
DtlsSEQIncrement(ssl, CUR_ORDER);
|
||||
|
||||
return SendBuffered(ssl);
|
||||
}
|
||||
|
@ -31,6 +31,7 @@ EXTRA_DIST += tests/test.conf \
|
||||
tests/test-psk-no-id-sha2.conf \
|
||||
tests/test-dtls.conf \
|
||||
tests/test-dtls-fails.conf \
|
||||
tests/test-dtls-fails-cipher.conf \
|
||||
tests/test-dtls-group.conf \
|
||||
tests/test-dtls-reneg-client.conf \
|
||||
tests/test-dtls-reneg-server.conf \
|
||||
|
@ -1003,6 +1003,20 @@ int SuiteTest(int argc, char** argv)
|
||||
}
|
||||
strcpy(argv0[2], "");
|
||||
#endif
|
||||
#ifdef WOLFSSL_EXTRA_ALERTS
|
||||
/* failure tests */
|
||||
args.argc = 3;
|
||||
strcpy(argv0[1], "tests/test-dtls-fails-cipher.conf");
|
||||
strcpy(argv0[2], "expFail"); /* tests are expected to fail */
|
||||
printf("starting dtls cipher mismatch tests that expect failure\n");
|
||||
test_harness(&args);
|
||||
if (args.return_code != 0) {
|
||||
printf("error from script %d\n", args.return_code);
|
||||
args.return_code = EXIT_FAILURE;
|
||||
goto exit;
|
||||
}
|
||||
strcpy(argv0[2], "");
|
||||
#endif
|
||||
#endif
|
||||
#ifdef WOLFSSL_SCTP
|
||||
/* add dtls-sctp extra suites */
|
||||
|
9
tests/test-dtls-fails-cipher.conf
Normal file
9
tests/test-dtls-fails-cipher.conf
Normal file
@ -0,0 +1,9 @@
|
||||
# server DTLSv1.2 cipher mismatch
|
||||
-v 3
|
||||
-u
|
||||
-l DHE-RSA-AES128-SHA256
|
||||
|
||||
# client DTLSv1.2 cipher mismatch
|
||||
-v 3
|
||||
-u
|
||||
-l DHE-RSA-AES256-SHA256
|
Reference in New Issue
Block a user