Searched refs:mbedtls_cipher_update (Results 1 – 10 of 10) sorted by relevance
/net-tools-3.7.0/mbedtls-2.4.0/tests/suites/ |
D | test_suite_cipher.function | 70 TEST_ASSERT( mbedtls_cipher_update( NULL, buf, 0, buf, &olen ) 72 TEST_ASSERT( mbedtls_cipher_update( &ctx, buf, 0, buf, &olen ) 124 TEST_ASSERT( mbedtls_cipher_update( &ctx, input, 1, output, &olen ) 207 TEST_ASSERT( 0 == mbedtls_cipher_update( &ctx_enc, inbuf, length, encbuf, &outlen ) ); 228 TEST_ASSERT( 0 == mbedtls_cipher_update( &ctx_dec, encbuf, total_len, decbuf, &outlen ) ); 300 TEST_ASSERT( 0 == mbedtls_cipher_update( &ctx, inbuf, length, encbuf, &outlen ) ); 348 TEST_ASSERT( 0 == mbedtls_cipher_update( &ctx_dec, encbuf, 0, decbuf, &outlen ) ); 416 TEST_ASSERT( 0 == mbedtls_cipher_update( &ctx_enc, inbuf, first_length, encbuf, &outlen ) ); 418 …TEST_ASSERT( 0 == mbedtls_cipher_update( &ctx_enc, inbuf + first_length, second_length, encbuf + t… 433 TEST_ASSERT( 0 == mbedtls_cipher_update( &ctx_dec, encbuf, totaloutlen, decbuf, &outlen ) ); [all …]
|
/net-tools-3.7.0/mbedtls-2.4.0/library/ |
D | cmac.c | 150 if( ( ret = mbedtls_cipher_update( ctx, L, block_size, L, &olen ) ) != 0 ) in cmac_generate_subkeys() 269 if( ( ret = mbedtls_cipher_update( ctx, state, block_size, state, in mbedtls_cipher_cmac_update() 288 if( ( ret = mbedtls_cipher_update( ctx, state, block_size, state, in mbedtls_cipher_cmac_update() 348 if( ( ret = mbedtls_cipher_update( ctx, state, block_size, state, in mbedtls_cipher_cmac_finish()
|
D | ccm.c | 119 if( ( ret = mbedtls_cipher_update( &ctx->cipher_ctx, y, 16, y, &olen ) ) != 0 ) \ 128 if( ( ret = mbedtls_cipher_update( &ctx->cipher_ctx, ctr, 16, b, &olen ) ) != 0 ) \
|
D | gcm.c | 110 if( ( ret = mbedtls_cipher_update( &ctx->cipher_ctx, h, 16, h, &olen ) ) != 0 ) in gcm_gen_table() 323 if( ( ret = mbedtls_cipher_update( &ctx->cipher_ctx, ctx->y, 16, ctx->base_ectr, in mbedtls_gcm_starts() 381 if( ( ret = mbedtls_cipher_update( &ctx->cipher_ctx, ctx->y, 16, ectr, in mbedtls_gcm_update()
|
D | pkcs12.c | 216 if( ( ret = mbedtls_cipher_update( &cipher_ctx, data, len, in mbedtls_pkcs12_pbe()
|
D | cipher.c | 270 int mbedtls_cipher_update( mbedtls_cipher_context_t *ctx, const unsigned char *input, in mbedtls_cipher_update() function 826 if( ( ret = mbedtls_cipher_update( ctx, input, ilen, output, olen ) ) != 0 ) in mbedtls_cipher_crypt()
|
/net-tools-3.7.0/mbedtls-2.4.0/programs/aes/ |
D | crypt_and_hash.c | 341 if( mbedtls_cipher_update( &cipher_ctx, buffer, ilen, output, &olen ) != 0 ) in main() 486 if( mbedtls_cipher_update( &cipher_ctx, buffer, ilen, output, in main()
|
/net-tools-3.7.0/mbedtls-2.4.0/include/mbedtls/ |
D | cipher.h | 555 int mbedtls_cipher_update( mbedtls_cipher_context_t *ctx, const unsigned char *input,
|
D | compat-1.3.h | 1863 #define cipher_update mbedtls_cipher_update
|
/net-tools-3.7.0/mbedtls-2.4.0/scripts/data_files/ |
D | rename-1.3-2.0.txt | 1407 cipher_update mbedtls_cipher_update
|