blob: 26f3719089c899aca7ae6cfcd73f17346937c1cb [file] [log] [blame]
Minos Galanakis2c824b42025-03-20 09:28:45 +00001/* Common code between clients and services */
2
3/*
4 * Copyright The Mbed TLS Contributors
5 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
6 */
7
8#include "common.h"
9int __psa_ff_client_security_state = NON_SECURE;
10
11#if 0
12static void _printbits(uint32_t num)
13{
14 for (int i = 0; i < 32; i++) {
15 if ((num >> (31-i) & 0x1)) {
16 INFO("1");
17 } else {
18 INFO("0");
19 }
20 }
21 INFO("\n");
22}
23#endif