mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
24 lines
516 B
C
24 lines
516 B
C
|
/*
|
||
|
* SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
|
||
|
*
|
||
|
* SPDX-License-Identifier: Unlicense OR CC0-1.0
|
||
|
*/
|
||
|
#pragma once
|
||
|
|
||
|
// efuse key blocks for DS
|
||
|
#define DS_KEY_BLOCK_1 0
|
||
|
#define DS_KEY_BLOCK_2 1
|
||
|
#define DS_KEY_BLOCK_3 2
|
||
|
|
||
|
/*
|
||
|
* HMAC and ECDSA testcases cannot run together as block used for burning keys are overlapped
|
||
|
*/
|
||
|
|
||
|
// efuse key blocks for HMAC
|
||
|
#define HMAC_KEY_BLOCK_1 3
|
||
|
#define HMAC_KEY_BLOCK_2 4
|
||
|
|
||
|
// efuse key blocks for ECDSA
|
||
|
#define ECDSA_KEY_BLOCK_1 4
|
||
|
#define ECDSA_KEY_BLOCK_2 5
|