123456789101112131415161718192021 |
- /* This file was automatically generated by nrfutil on 2019-08-22 (YY-MM-DD) at 08:46:16 */
- #include "sdk_config.h"
- #include "stdint.h"
- #include "compiler_abstraction.h"
- #if NRF_CRYPTO_BACKEND_OBERON_ENABLED
- /* Oberon backend is changing endianness thus public key must be kept in RAM. */
- #define _PK_CONST
- #else
- #define _PK_CONST const
- #endif
- /** @brief Public key used to verify DFU images */
- __ALIGN(4) _PK_CONST uint8_t pk[64] =
- {
- 0x78, 0x38, 0xb6, 0xe9, 0x23, 0x07, 0xc1, 0x56, 0x75, 0x3d, 0xb3, 0x7e, 0x97, 0xab, 0x39, 0xa6, 0xe1, 0x11, 0x53, 0x70, 0x68, 0xf7, 0x26, 0xbb, 0xc0, 0xae, 0x95, 0x10, 0xbb, 0xb1, 0x79, 0x41,
- 0xb3, 0xd7, 0xd6, 0xc3, 0x8c, 0xe0, 0xd2, 0x05, 0xa5, 0xd6, 0xb3, 0x06, 0x05, 0x2c, 0xa3, 0x2c, 0x0d, 0x95, 0xd7, 0xdc, 0x40, 0xb5, 0xba, 0xe8, 0x16, 0x5f, 0xb7, 0xfb, 0x81, 0x72, 0x08, 0xf9
- };
|