Tool/software:
Hi,
About this piece of code in the bootloader, I know it is search the seq in the cert. but where is this kind of magic number come from?
Would you point me in the documentation?
Code
/** * \brief API to get boot sequence oid * * \param boot_seq_oid [in] pointer to integer array for populating boot sequence oid * */ void Bootloader_socGetBootSeqOid(uint8_t* boot_seq_oid){ uint8_t boot_seq[] = {0x06, 0x09, 0x2B, 0x06, 0x01, 0x04, 0x01, 0x82, 0x26, 0x01, 0x22}; memcpy(boot_seq_oid, boot_seq, sizeof(boot_seq)); }
maybe document is here
https://software-dl.ti.com/mcu-plus-sdk/esd/AM64X/latest/exports/docs/api_guide_am64x/TOOLS_SECURITY.html#TOOLS_BOOT_SIGNING
However, I couldn't identify Seq Oid. there are too many OID, the number seems not match to above code. Thanks.