diff options
Diffstat (limited to 'common/constants.h')
-rw-r--r-- | common/constants.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common/constants.h b/common/constants.h index 446b147a..36851020 100644 --- a/common/constants.h +++ b/common/constants.h @@ -105,6 +105,7 @@ extern const char kPrefsUrlSwitchCount[]; extern const char kPrefsVerityWritten[]; extern const char kPrefsWallClockScatteringWaitPeriod[]; extern const char kPrefsWallClockStagingWaitPeriod[]; +extern const char kPrefsManifestBytes[]; // Keys used when storing and loading payload properties. extern const char kPayloadPropertyFileSize[]; @@ -215,6 +216,9 @@ const int kDownloadP2PMaxRetryCount = 5; const int kDownloadConnectTimeoutSeconds = 30; const int kDownloadP2PConnectTimeoutSeconds = 5; +// Size in bytes of SHA256 hash. +const int kSHA256Size = 32; + } // namespace chromeos_update_engine #endif // UPDATE_ENGINE_COMMON_CONSTANTS_H_ |