-
Notifications
You must be signed in to change notification settings - Fork 42
/
authentication-zynq.h
executable file
·76 lines (68 loc) · 3.14 KB
/
authentication-zynq.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/******************************************************************************
* Copyright 2015-2022 Xilinx, Inc.
* Copyright 2022-2023 Advanced Micro Devices, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
******************************************************************************/
#pragma once
#ifndef _AUTHENTICATION_ZYNQ_H_
#define _AUTHENTICATION_ZYNQ_H_
/*
-------------------------------------------------------------------------------
*********************************************** H E A D E R F I L E S ***
-------------------------------------------------------------------------------
*/
#include "authentication.h"
/*
-------------------------------------------------------------------------------
********************************************* P R E P R O C E S S O R S ***
-------------------------------------------------------------------------------
*/
#define AUTH_HDR_ZYNQ 0x00000101
typedef struct
{
uint32_t acHeader; // 0x000
uint32_t acSize; // 0x004
uint8_t acUdf[UDF_DATA_SIZE]; // 0x008
ACKey2048 acPpk; // 0x040
ACKey2048 acSpk; // 0x280
ACSignature2048 acSpkSignature; // 0x4C0
ACSignature2048 acPartitionSignature; // 0x5C0
} AuthCertificate2048Structure;
/*
-------------------------------------------------------------------------------
********************************************************* C L A S S E S ***
-------------------------------------------------------------------------------
*/
/******************************************************************************/
class ZynqAuthenticationContext : public AuthenticationContext
{
public:
ZynqAuthenticationContext();
ZynqAuthenticationContext(const AuthenticationContext* refAuthContext);
ZynqAuthenticationContext(const AuthCertificate2048Structure* existingCert);
~ZynqAuthenticationContext();
uint32_t GetCertificateSize(void) { return certSize; }
Section* CreateCertificate(BootImage& bi, Binary& cache, Section* dataSection);
void Link(BootImage& bi, std::list<Section*> sections, AuthenticationCertificate* cert);
void GeneratePPKHash(const std::string& filename);
void SetKeyLength(Authentication::Type type);
void GenerateSPKHash(uint8_t* sha256_hash_padded);
void CreatePadding(uint8_t* signature, const uint8_t* hash);
void CopyPartitionSignature(BootImage& bi, std::list<Section*> sections, uint8_t* signatureBlock, Section* acSection);
void RearrangeEndianess(uint8_t *array, uint32_t size) {};
private:
uint32_t certSize;
void CopySPKSignature(ACSignature2048* ptr);
};
#endif