You've already forked slimbootloader
mirror of
https://github.com/Dasharo/slimbootloader.git
synced 2026-03-06 15:26:20 -08:00
43 lines
1.3 KiB
C
43 lines
1.3 KiB
C
/** @file
|
|
|
|
Copyright (c) 2016 - 2017, Intel Corporation. All rights reserved.<BR>
|
|
This program and the accompanying materials
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
http://opensource.org/licenses/bsd-license.php.
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
**/
|
|
|
|
#ifndef __KEY_STORE_H__
|
|
#define __KEY_STORE_H__
|
|
|
|
#define KEYSTORE_SIGNATURE SIGNATURE_32('_', 'K', 'S', '_')
|
|
#define KEYSTORE_DIGEST_LENGTH 32
|
|
|
|
#define HASH_INDEX_STAGE_1B 0
|
|
#define HASH_INDEX_STAGE_2 1
|
|
#define HASH_INDEX_PAYLOAD 2
|
|
#define HASH_INDEX_FIRMWARE_UPDATE 3
|
|
#define HASH_INDEX_CFG_PUBKEY 4
|
|
#define HASH_INDEX_FWU_PUBKEY 5
|
|
#define HASH_INDEX_OS_PUBKEY 6
|
|
#define HASH_INDEX_PAYLOAD_DYNAMIC 7
|
|
#define HASH_INDEX_MAX_NUM 8
|
|
|
|
|
|
#pragma pack(1)
|
|
typedef struct {
|
|
UINT8 Data[KEYSTORE_DIGEST_LENGTH];
|
|
} KEYSTORE_DATA;
|
|
|
|
typedef struct {
|
|
UINT32 Signature;
|
|
UINT32 Valid;
|
|
KEYSTORE_DATA Data[HASH_INDEX_MAX_NUM];
|
|
} KEYSTORE_TABLE;
|
|
#pragma pack()
|
|
|
|
#endif /* __KEY_STORE_H__ */ |