mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-04 08:02:28 +03:00
Fix line-too-long in script
Signed-off-by: Ryan Everett <ryan.everett@arm.com>
This commit is contained in:
@ -153,7 +153,9 @@ class PSAWrapperGenerator(c_wrapper_generator.Base):
|
|||||||
# Proof-of-concept: just instrument one function for now
|
# Proof-of-concept: just instrument one function for now
|
||||||
if function_name == 'psa_cipher_encrypt':
|
if function_name == 'psa_cipher_encrypt':
|
||||||
return True
|
return True
|
||||||
if function_name == 'psa_import_key' or function_name == 'psa_export_key' or function_name == 'psa_export_public_key':
|
if function_name in ('psa_import_key',
|
||||||
|
'psa_export_key',
|
||||||
|
'psa_export_public_key'):
|
||||||
return True
|
return True
|
||||||
if function_name in ('psa_sign_message',
|
if function_name in ('psa_sign_message',
|
||||||
'psa_verify_message',
|
'psa_verify_message',
|
||||||
|
Reference in New Issue
Block a user