mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-08-01 10:06:53 +03:00
psa: cipher: Remove cipher_generate_iv driver entry point
Remove cipher_generate_iv driver entry point as there is no known use case to delegate this to a driver. Signed-off-by: Ronald Cron <ronald.cron@arm.com>
This commit is contained in:
@ -81,10 +81,6 @@ psa_status_t test_transparent_cipher_decrypt_setup(
|
||||
psa_status_t test_transparent_cipher_abort(
|
||||
mbedtls_transparent_test_driver_cipher_operation_t *operation );
|
||||
|
||||
psa_status_t test_transparent_cipher_generate_iv(
|
||||
mbedtls_transparent_test_driver_cipher_operation_t *operation,
|
||||
uint8_t *iv, size_t iv_size, size_t *iv_length);
|
||||
|
||||
psa_status_t test_transparent_cipher_set_iv(
|
||||
mbedtls_transparent_test_driver_cipher_operation_t *operation,
|
||||
const uint8_t *iv, size_t iv_length);
|
||||
@ -130,10 +126,6 @@ psa_status_t test_opaque_cipher_decrypt_setup(
|
||||
psa_status_t test_opaque_cipher_abort(
|
||||
mbedtls_opaque_test_driver_cipher_operation_t *operation);
|
||||
|
||||
psa_status_t test_opaque_cipher_generate_iv(
|
||||
mbedtls_opaque_test_driver_cipher_operation_t *operation,
|
||||
uint8_t *iv, size_t iv_size, size_t *iv_length);
|
||||
|
||||
psa_status_t test_opaque_cipher_set_iv(
|
||||
mbedtls_opaque_test_driver_cipher_operation_t *operation,
|
||||
const uint8_t *iv, size_t iv_length);
|
||||
|
Reference in New Issue
Block a user