diff options
Diffstat (limited to '')
-rw-r--r-- | install.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -18,6 +18,7 @@ #define RECOVERY_INSTALL_H_ #include "common.h" +#include "mincrypt/rsa.h" #ifdef __cplusplus extern "C" { @@ -29,6 +30,7 @@ enum { INSTALL_SUCCESS, INSTALL_ERROR, INSTALL_CORRUPT, INSTALL_NONE }; // cache partition. int install_package(const char *root_path, int* wipe_cache, const char* install_file, bool needs_mount); +RSAPublicKey* load_keys(const char* filename, int* numKeys); #ifdef __cplusplus } |