/*
 * app_secboot.h
 */

#ifndef __APP_SECBOOT_H
#define __APP_SECBOOT_H

#define SHA256_SIZE 256

typedef struct trusted_boot_bl_status_s
{
    unsigned char hash[SHA256_SIZE];
} __attribute__ ((packed)) trusted_boot_bl_status_t;

/* svb isn't used
int32 store_measure();
*/
int32 store_vbmeta(trusted_boot_bl_status_t *hash_ptr);

#endif // __APP_SECBOOT_H