This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

PROCESSOR-SDK-AM64X: magic number in function Bootloader_socGetBootSeqOid

Part Number: PROCESSOR-SDK-AM64X

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.