Lines Matching defs:sb_image_ctx
154 struct sb_image_ctx { struct
155 unsigned int in_section:1;
156 unsigned int in_dcd:1;
158 unsigned int display_progress:1;
159 unsigned int silent_dump:1;
160 char *input_filename;
161 char *output_filename;
162 char *cfg_filename;
163 uint8_t image_key[16];
166 unsigned int sect_count;
168 unsigned int sect_boot;
169 unsigned int sect_boot_found:1;
171 struct sb_section_ctx *sect_head;
172 struct sb_section_ctx *sect_tail;
174 struct sb_dcd_ctx *dcd_head;
175 struct sb_dcd_ctx *dcd_tail;
177 EVP_CIPHER_CTX *cipher_ctx;
178 EVP_MD_CTX *md_ctx;
179 uint8_t digest[32];
180 struct sb_key_dictionary_key sb_dict_key;
204 static int sb_aes_init(struct sb_image_ctx *ictx, uint8_t *iv, int enc) in sb_aes_init() argument