Software APIs
test_wafer_auth_secret.h
1 // Copyright lowRISC contributors (OpenTitan project).
2 // Licensed under the Apache License, Version 2.0, see LICENSE for details.
3 // SPDX-License-Identifier: Apache-2.0
4 
5 #ifndef OPENTITAN_SW_DEVICE_SILICON_CREATOR_MANUF_TESTS_TEST_WAFER_AUTH_SECRET_H_
6 #define OPENTITAN_SW_DEVICE_SILICON_CREATOR_MANUF_TESTS_TEST_WAFER_AUTH_SECRET_H_
7 
8 #include "sw/device/silicon_creator/manuf/lib/flash_info_fields.h"
9 
10 // Expected wafer authentication secret to write to the flash
11 const uint32_t
12  kExpectedWaferAuthSecret[kFlashInfoWaferAuthSecretSizeIn32BitWords] = {
13  0xdeadbeef, 0xdeadbeef, 0xdeadbeef, 0xdeadbeef,
14  0xdeadbeef, 0xdeadbeef, 0xdeadbeef, 0xdeadbeef,
15 };
16 
17 #endif // OPENTITAN_SW_DEVICE_SILICON_CREATOR_MANUF_TESTS_TEST_WAFER_AUTH_SECRET_H_