mirror of
https://github.com/cuberite/polarssl.git
synced 2025-09-07 14:15:58 -04:00
Remove psa_crypto_ prefix from test functions
This ensures they have a different name to the functions they test. Signed-off-by: David Horstmann <david.horstmann@arm.com>
This commit is contained in:
parent
34342a2410
commit
818b39dbc3
@ -4022,34 +4022,34 @@ PSA derive persistent key: HKDF SHA-256, exportable
|
||||
persistent_key_load_key_from_storage:"0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b":PSA_KEY_TYPE_RAW_DATA:1024:PSA_KEY_USAGE_EXPORT:0:DERIVE_KEY
|
||||
|
||||
PSA input buffer copy: straightforward copy
|
||||
psa_crypto_copy_input:20:20:PSA_SUCCESS
|
||||
copy_input:20:20:PSA_SUCCESS
|
||||
|
||||
PSA input buffer copy: copy buffer larger than required
|
||||
psa_crypto_copy_input:10:20:PSA_SUCCESS
|
||||
copy_input:10:20:PSA_SUCCESS
|
||||
|
||||
PSA input buffer copy: copy buffer too small
|
||||
psa_crypto_copy_input:20:10:PSA_ERROR_BUFFER_TOO_SMALL
|
||||
copy_input:20:10:PSA_ERROR_BUFFER_TOO_SMALL
|
||||
|
||||
PSA input buffer copy: zero-length source buffer
|
||||
psa_crypto_copy_input:0:10:PSA_SUCCESS
|
||||
copy_input:0:10:PSA_SUCCESS
|
||||
|
||||
PSA input buffer copy: zero-length both buffers
|
||||
psa_crypto_copy_input:0:0:PSA_SUCCESS
|
||||
copy_input:0:0:PSA_SUCCESS
|
||||
|
||||
PSA output buffer copy: straightforward copy
|
||||
psa_crypto_copy_output:20:20:PSA_SUCCESS
|
||||
copy_output:20:20:PSA_SUCCESS
|
||||
|
||||
PSA output buffer copy: output buffer larger than required
|
||||
psa_crypto_copy_output:10:20:PSA_SUCCESS
|
||||
copy_output:10:20:PSA_SUCCESS
|
||||
|
||||
PSA output buffer copy: output buffer too small
|
||||
psa_crypto_copy_output:20:10:PSA_ERROR_BUFFER_TOO_SMALL
|
||||
copy_output:20:10:PSA_ERROR_BUFFER_TOO_SMALL
|
||||
|
||||
PSA output buffer copy: zero-length source buffer
|
||||
psa_crypto_copy_output:0:10:PSA_SUCCESS
|
||||
copy_output:0:10:PSA_SUCCESS
|
||||
|
||||
PSA output buffer copy: zero-length both buffers
|
||||
psa_crypto_copy_output:0:0:PSA_SUCCESS
|
||||
copy_output:0:0:PSA_SUCCESS
|
||||
|
||||
PSA buffers alloc and copy
|
||||
psa_crypto_alloc_and_copy:0:20:0:20:PSA_SUCCESS
|
||||
|
@ -5711,7 +5711,7 @@ exit:
|
||||
/* END_CASE */
|
||||
|
||||
/* BEGIN_CASE */
|
||||
void psa_crypto_copy_input(int src_len, int dst_len, int exp_ret)
|
||||
void copy_input(int src_len, int dst_len, int exp_ret)
|
||||
{
|
||||
uint8_t *src_buffer = NULL;
|
||||
uint8_t *dst_buffer = NULL;
|
||||
@ -5741,7 +5741,7 @@ exit:
|
||||
/* END_CASE */
|
||||
|
||||
/* BEGIN_CASE */
|
||||
void psa_crypto_copy_output(int src_len, int dst_len, int exp_ret)
|
||||
void copy_output(int src_len, int dst_len, int exp_ret)
|
||||
{
|
||||
uint8_t *src_buffer = NULL;
|
||||
uint8_t *dst_buffer = NULL;
|
||||
|
Loading…
x
Reference in New Issue
Block a user