From 9481fb8482a214ca14cda26974221033d14b9126 Mon Sep 17 00:00:00 2001 From: Andrew Kozlik Date: Mon, 7 Aug 2023 13:54:59 +0200 Subject: [PATCH] fixup! feat(core): Implement OPTIGA provisioning in prodtest. --- core/embed/prodtest/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/embed/prodtest/main.c b/core/embed/prodtest/main.c index 23992b0bc9..99e0c55ed3 100644 --- a/core/embed/prodtest/main.c +++ b/core/embed/prodtest/main.c @@ -962,7 +962,7 @@ static void keyfido_write(char *data) { return; } - // Hash the shared secret. Use the result as the decryption key and IV. + // Hash the shared secret. Use the result as the decryption key. sha256_Raw(secret, secret_size, secret); aes_decrypt_ctx ctx = {0}; AES_RETURN aes_ret = aes_decrypt_key256(secret, &ctx);