@@ -85,31 +85,6 @@ const unsigned char rsa_pub_key[] = {
85
85
0xc9 , 0x02 , 0x03 , 0x01 , 0x00 , 0x01
86
86
};
87
87
const unsigned int rsa_pub_key_len = 270 ;
88
- #elif defined(MCUBOOT_SIGN_EC )
89
- /* Format of PEM :
90
- * -----BEGIN PUBLIC KEY-----
91
- * base64encode(DER)
92
- * -----END PUBLIC KEY----- */
93
- #if defined(ECC224_KEY_FILE )
94
- #include ECC224_KEY_FILE
95
- #else
96
- #warning "Used default ECC224 ecdsa_pub_key"
97
- /* It is OEM_PUB_KEY at this moment for debug purposes */
98
- /* Autogenerated by imgtool.py, do not edit. */
99
- const unsigned char ecdsa_pub_key [] = {
100
- 0x30 , 0x4e , 0x30 , 0x10 , 0x06 , 0x07 , 0x2a , 0x86 ,
101
- 0x48 , 0xce , 0x3d , 0x02 , 0x01 , 0x06 , 0x05 , 0x2b ,
102
- 0x81 , 0x04 , 0x00 , 0x21 , 0x03 , 0x3a , 0x00 , 0x04 ,
103
- 0xa5 , 0x8b , 0x18 , 0xa4 , 0x60 , 0x37 , 0xf7 , 0x0d ,
104
- 0x2b , 0x06 , 0xba , 0x4b , 0x4c , 0xd7 , 0x8d , 0xec ,
105
- 0x2a , 0x32 , 0x5a , 0x0e , 0x52 , 0xf4 , 0x1b , 0x7c ,
106
- 0x99 , 0xec , 0x68 , 0x5d , 0x05 , 0xc3 , 0x6b , 0x7b ,
107
- 0x40 , 0x9c , 0xaa , 0xac , 0x90 , 0xf4 , 0xfc , 0xbe ,
108
- 0x98 , 0xe5 , 0x3e , 0x86 , 0x3d , 0x37 , 0xbf , 0x45 ,
109
- 0x78 , 0x92 , 0x27 , 0xca , 0x69 , 0xe6 , 0xf2 , 0xc5 ,
110
- };
111
- const unsigned int ecdsa_pub_key_len = 80 ;
112
- #endif
113
88
#elif defined(MCUBOOT_SIGN_EC256 )
114
89
/* Format of PEM :
115
90
* -----BEGIN PUBLIC KEY-----
@@ -141,16 +116,14 @@ const unsigned int ecdsa_pub_key_len = 91;
141
116
#endif
142
117
143
118
#if defined(MCUBOOT_SIGN_RSA ) || \
144
- defined(MCUBOOT_SIGN_EC ) || \
145
119
defined(MCUBOOT_SIGN_EC256 )
146
120
const struct bootutil_key bootutil_keys [] = {
147
121
#if defined(MCUBOOT_SIGN_RSA )
148
122
{
149
123
.key = rsa_pub_key ,
150
124
.len = & rsa_pub_key_len ,
151
125
},
152
- #elif defined(MCUBOOT_SIGN_EC ) || \
153
- defined(MCUBOOT_SIGN_EC256 )
126
+ #elif defined(MCUBOOT_SIGN_EC256 )
154
127
{
155
128
.key = ecdsa_pub_key ,
156
129
.len = & ecdsa_pub_key_len ,
0 commit comments