Searched refs:decrypted_text (Results 1 – 2 of 2) sorted by relevance
/Zephyr-latest/samples/psa/persistent_key/src/ |
D | main.c | 57 static uint8_t decrypted_text[sizeof(plaintext)]; in use_persistent_key() local 67 decrypted_text, sizeof(decrypted_text), &decrypted_text_len); in use_persistent_key() 75 if (memcmp(plaintext, decrypted_text, sizeof(plaintext))) { in use_persistent_key() 78 LOG_HEXDUMP_INF(decrypted_text, sizeof(decrypted_text), "Decrypted text:"); in use_persistent_key()
|
/Zephyr-latest/tests/subsys/secure_storage/psa/crypto/src/ |
D | main.c | 103 static uint8_t decrypted_text[sizeof(plaintext)]; in ZTEST() local 115 decrypted_text, sizeof(decrypted_text), &output_length); in ZTEST() 118 zassert_mem_equal(plaintext, decrypted_text, sizeof(plaintext)); in ZTEST()
|