Skip to content

Commit 135129a

Browse files
Fix copypasta
1 parent fbb1b2d commit 135129a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/psa_crypto.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1433,7 +1433,7 @@ psa_status_t psa_export_public_key( psa_key_handle_t handle,
14331433
static_assert( ( MBEDTLS_PSA_KA_MASK_EXTERNAL_ONLY & MBEDTLS_PSA_KA_MASK_DUAL_USE ) == 0,
14341434
"One or more key attribute flag is listed as both external-only and dual-use" );
14351435
static_assert( ( PSA_KA_MASK_INTERNAL_ONLY & MBEDTLS_PSA_KA_MASK_DUAL_USE ) == 0,
1436-
"One or more key attribute flag is listed as both external-only and dual-use" );
1436+
"One or more key attribute flag is listed as both internal-only and dual-use" );
14371437
static_assert( ( PSA_KA_MASK_INTERNAL_ONLY & MBEDTLS_PSA_KA_MASK_EXTERNAL_ONLY ) == 0,
14381438
"One or more key attribute flag is listed as both internal-only and external-only" );
14391439
#endif

0 commit comments

Comments
 (0)