diff options
author | Tao Bao <tbao@google.com> | 2016-02-04 20:16:20 +0100 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2016-02-04 20:16:20 +0100 |
commit | 6e71c90fadbae68824116276d4dd536d962838f8 (patch) | |
tree | b6db9b5f6f80dfe4b8d4a5333d851a0eb14927bf /applypatch/applypatch.h | |
parent | Merge "uncrypt: add options to setup bcb and clear bcb." (diff) | |
parent | Switch from mincrypt to BoringSSL in applypatch and updater. (diff) | |
download | android_bootable_recovery-6e71c90fadbae68824116276d4dd536d962838f8.tar android_bootable_recovery-6e71c90fadbae68824116276d4dd536d962838f8.tar.gz android_bootable_recovery-6e71c90fadbae68824116276d4dd536d962838f8.tar.bz2 android_bootable_recovery-6e71c90fadbae68824116276d4dd536d962838f8.tar.lz android_bootable_recovery-6e71c90fadbae68824116276d4dd536d962838f8.tar.xz android_bootable_recovery-6e71c90fadbae68824116276d4dd536d962838f8.tar.zst android_bootable_recovery-6e71c90fadbae68824116276d4dd536d962838f8.zip |
Diffstat (limited to 'applypatch/applypatch.h')
-rw-r--r-- | applypatch/applypatch.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/applypatch/applypatch.h b/applypatch/applypatch.h index 415bc1b3c..e0df104b5 100644 --- a/applypatch/applypatch.h +++ b/applypatch/applypatch.h @@ -18,16 +18,16 @@ #define _APPLYPATCH_H #include <sys/stat.h> -#include "mincrypt/sha.h" +#include "openssl/sha.h" #include "edify/expr.h" typedef struct _Patch { - uint8_t sha1[SHA_DIGEST_SIZE]; + uint8_t sha1[SHA_DIGEST_LENGTH]; const char* patch_filename; } Patch; typedef struct _FileContents { - uint8_t sha1[SHA_DIGEST_SIZE]; + uint8_t sha1[SHA_DIGEST_LENGTH]; unsigned char* data; ssize_t size; struct stat st; |