mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2026-01-05 22:19:11 +01:00
Test and fix anti-replay functions
This commit is contained in:
parent
7a7e140d4e
commit
4956fd7437
5 changed files with 107 additions and 14 deletions
33
tests/suites/test_suite_ssl.function
Normal file
33
tests/suites/test_suite_ssl.function
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
/* BEGIN_HEADER */
|
||||
#include <polarssl/ssl.h>
|
||||
/* END_HEADER */
|
||||
|
||||
/* BEGIN_DEPENDENCIES
|
||||
* depends_on:POLARSSL_SSL_TLS_C
|
||||
* END_DEPENDENCIES
|
||||
*/
|
||||
|
||||
/* BEGIN_CASE depends_on:POLARSSL_SSL_DTLS_ANTI_REPLAY */
|
||||
void ssl_dtls_replay( char *prevs, char *new, int ret )
|
||||
{
|
||||
ssl_context ssl;
|
||||
char *end_prevs = prevs + strlen( prevs ) + 1;
|
||||
|
||||
TEST_ASSERT( ssl_init( &ssl ) == 0 );
|
||||
TEST_ASSERT( ssl_set_transport( &ssl, SSL_TRANSPORT_DATAGRAM ) == 0 );
|
||||
|
||||
/* Read previous record numbers */
|
||||
for( ; end_prevs - prevs >= 13; prevs += 13 )
|
||||
{
|
||||
prevs[12] = '\0';
|
||||
unhexify( ssl.in_ctr + 2, prevs );
|
||||
ssl_dtls_replay_update( &ssl );
|
||||
}
|
||||
|
||||
/* Check new number */
|
||||
unhexify( ssl.in_ctr + 2, new );
|
||||
TEST_ASSERT( ssl_dtls_replay_check( &ssl ) == ret );
|
||||
|
||||
ssl_free( &ssl );
|
||||
}
|
||||
/* END_CASE */
|
||||
Loading…
Add table
Add a link
Reference in a new issue