• Home
  • Raw
  • Download

Lines Matching refs:cipher_ctx

158         if( ctx->cipher_ctx != NULL )  in mbedtls_cipher_free()
161 (mbedtls_cipher_context_psa *) ctx->cipher_ctx; in mbedtls_cipher_free()
187 if( ctx->cipher_ctx ) in mbedtls_cipher_free()
188 ctx->cipher_info->base->ctx_free_func( ctx->cipher_ctx ); in mbedtls_cipher_free()
202 if( NULL == ( ctx->cipher_ctx = cipher_info->base->ctx_alloc_func() ) ) in mbedtls_cipher_setup()
246 ctx->cipher_ctx = cipher_psa; in mbedtls_cipher_setup_psa()
269 (mbedtls_cipher_context_psa *) ctx->cipher_ctx; in mbedtls_cipher_setkey()
340 return( ctx->cipher_info->base->setkey_enc_func( ctx->cipher_ctx, key, in mbedtls_cipher_setkey()
345 return( ctx->cipher_info->base->setkey_dec_func( ctx->cipher_ctx, key, in mbedtls_cipher_setkey()
389 if ( 0 != mbedtls_chacha20_starts( (mbedtls_chacha20_context*)ctx->cipher_ctx, in mbedtls_cipher_set_iv()
401 return( mbedtls_gcm_starts( (mbedtls_gcm_context *) ctx->cipher_ctx, in mbedtls_cipher_set_iv()
414 (mbedtls_ccm_context *) ctx->cipher_ctx, in mbedtls_cipher_set_iv()
426 return( mbedtls_ccm_starts( (mbedtls_ccm_context *) ctx->cipher_ctx, in mbedtls_cipher_set_iv()
483 return( mbedtls_gcm_update_ad( (mbedtls_gcm_context *) ctx->cipher_ctx, in mbedtls_cipher_update_ad()
498 result = mbedtls_chachapoly_starts( (mbedtls_chachapoly_context*) ctx->cipher_ctx, in mbedtls_cipher_update_ad()
504 return( mbedtls_chachapoly_update_aad( (mbedtls_chachapoly_context*) ctx->cipher_ctx, in mbedtls_cipher_update_ad()
550 if( 0 != ( ret = ctx->cipher_info->base->ecb_func( ctx->cipher_ctx, in mbedtls_cipher_update()
562 return( mbedtls_gcm_update( (mbedtls_gcm_context *) ctx->cipher_ctx, in mbedtls_cipher_update()
571 return( mbedtls_ccm_update( (mbedtls_ccm_context *) ctx->cipher_ctx, in mbedtls_cipher_update()
581 return( mbedtls_chachapoly_update( (mbedtls_chachapoly_context*) ctx->cipher_ctx, in mbedtls_cipher_update()
624 if( 0 != ( ret = ctx->cipher_info->base->cbc_func( ctx->cipher_ctx, in mbedtls_cipher_update()
668 if( 0 != ( ret = ctx->cipher_info->base->cbc_func( ctx->cipher_ctx, in mbedtls_cipher_update()
684 if( 0 != ( ret = ctx->cipher_info->base->cfb_func( ctx->cipher_ctx, in mbedtls_cipher_update()
700 if( 0 != ( ret = ctx->cipher_info->base->ofb_func( ctx->cipher_ctx, in mbedtls_cipher_update()
715 if( 0 != ( ret = ctx->cipher_info->base->ctr_func( ctx->cipher_ctx, in mbedtls_cipher_update()
736 ret = ctx->cipher_info->base->xts_func( ctx->cipher_ctx, in mbedtls_cipher_update()
752 if( 0 != ( ret = ctx->cipher_info->base->stream_func( ctx->cipher_ctx, in mbedtls_cipher_update()
1017 if( 0 != ( ret = ctx->cipher_info->base->cbc_func( ctx->cipher_ctx, in mbedtls_cipher_finish()
1131 return( mbedtls_gcm_finish( (mbedtls_gcm_context *) ctx->cipher_ctx, in mbedtls_cipher_write_tag()
1145 (mbedtls_chachapoly_context*) ctx->cipher_ctx, tag ) ); in mbedtls_cipher_write_tag()
1195 (mbedtls_gcm_context *) ctx->cipher_ctx, in mbedtls_cipher_check_tag()
1219 (mbedtls_chachapoly_context*) ctx->cipher_ctx, check_tag ); in mbedtls_cipher_check_tag()
1266 (mbedtls_cipher_context_psa *) ctx->cipher_ctx; in mbedtls_cipher_crypt()
1358 (mbedtls_cipher_context_psa *) ctx->cipher_ctx; in mbedtls_cipher_aead_encrypt()
1385 return( mbedtls_gcm_crypt_and_tag( ctx->cipher_ctx, MBEDTLS_GCM_ENCRYPT, in mbedtls_cipher_aead_encrypt()
1394 return( mbedtls_ccm_encrypt_and_tag( ctx->cipher_ctx, ilen, in mbedtls_cipher_aead_encrypt()
1410 return( mbedtls_chachapoly_encrypt_and_tag( ctx->cipher_ctx, in mbedtls_cipher_aead_encrypt()
1438 (mbedtls_cipher_context_psa *) ctx->cipher_ctx; in mbedtls_cipher_aead_decrypt()
1468 ret = mbedtls_gcm_auth_decrypt( ctx->cipher_ctx, ilen, in mbedtls_cipher_aead_decrypt()
1484 ret = mbedtls_ccm_auth_decrypt( ctx->cipher_ctx, ilen, in mbedtls_cipher_aead_decrypt()
1507 ret = mbedtls_chachapoly_auth_decrypt( ctx->cipher_ctx, ilen, in mbedtls_cipher_aead_decrypt()
1558 return( mbedtls_nist_kw_wrap( ctx->cipher_ctx, mode, input, ilen, in mbedtls_cipher_auth_encrypt_ext()
1614 return( mbedtls_nist_kw_unwrap( ctx->cipher_ctx, mode, input, ilen, in mbedtls_cipher_auth_decrypt_ext()