Searched refs:mbedtls_cipher_set_padding_mode (Results 1 – 6 of 6) sorted by relevance
/mbedtls-development/tests/suites/ |
A D | test_suite_cipher.function | 226 /* mbedtls_cipher_set_padding_mode() */ 227 TEST_ASSERT( mbedtls_cipher_set_padding_mode( &invalid_ctx, valid_mode ) == 384 TEST_ASSERT( 0 == mbedtls_cipher_set_padding_mode( &ctx_dec, pad_mode ) ); 385 TEST_ASSERT( 0 == mbedtls_cipher_set_padding_mode( &ctx_enc, pad_mode ) ); 507 TEST_ASSERT( 0 == mbedtls_cipher_set_padding_mode( &ctx, pad_mode ) ); 644 TEST_ASSERT( 0 == mbedtls_cipher_set_padding_mode( &ctx_dec, pad_mode ) ); 645 TEST_ASSERT( 0 == mbedtls_cipher_set_padding_mode( &ctx_enc, pad_mode ) ); 742 TEST_ASSERT( 0 == mbedtls_cipher_set_padding_mode( &ctx, pad_mode ) ); 1037 TEST_ASSERT( 0 == mbedtls_cipher_set_padding_mode( &ctx, MBEDTLS_PADDING_NONE ) ); 1067 TEST_ASSERT( ret == mbedtls_cipher_set_padding_mode( &ctx, pad_mode ) ); [all …]
|
A D | test_suite_ssl.function | 1242 CHK( mbedtls_cipher_set_padding_mode( &t_in->cipher_ctx_enc, 1244 CHK( mbedtls_cipher_set_padding_mode( &t_in->cipher_ctx_dec, 1246 CHK( mbedtls_cipher_set_padding_mode( &t_out->cipher_ctx_enc, 1248 CHK( mbedtls_cipher_set_padding_mode( &t_out->cipher_ctx_dec,
|
/mbedtls-development/library/ |
A D | psa_crypto_cipher.c | 207 ret = mbedtls_cipher_set_padding_mode( &operation->ctx.cipher, in cipher_setup() 211 ret = mbedtls_cipher_set_padding_mode( &operation->ctx.cipher, in cipher_setup()
|
A D | cipher.c | 232 (void) mbedtls_cipher_set_padding_mode( ctx, MBEDTLS_PADDING_PKCS7 ); in mbedtls_cipher_setup() 234 (void) mbedtls_cipher_set_padding_mode( ctx, MBEDTLS_PADDING_NONE ); in mbedtls_cipher_setup() 1061 int mbedtls_cipher_set_padding_mode( mbedtls_cipher_context_t *ctx, in mbedtls_cipher_set_padding_mode() function
|
A D | ssl_tls.c | 1052 if( ( ret = mbedtls_cipher_set_padding_mode( &transform->cipher_ctx_enc, in ssl_tls12_populate_transform() 1059 if( ( ret = mbedtls_cipher_set_padding_mode( &transform->cipher_ctx_dec, in ssl_tls12_populate_transform()
|
/mbedtls-development/include/mbedtls/ |
A D | cipher.h | 760 int mbedtls_cipher_set_padding_mode( mbedtls_cipher_context_t *ctx,
|
Completed in 27 milliseconds