12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #ifndef BIN_SIGN_H_
- #define BIN_SIGN_H_
- typedef struct {
- unsigned int magic_num;
- unsigned int total_len;
- unsigned int rampatch_len;
- unsigned int product_id;
- unsigned int patch_ver;
- unsigned short sign_format_ver;
- unsigned short sign_algorithm;
- unsigned char reserved[8];
- } SIGN_HEADER_T;
- #endif
|