commit | f68bbbc952aa9a71898e4939b5f36187fa564a50 | [log] [tgz] |
---|---|---|
author | Alex Vakulenko <[email protected]> | Mon Feb 09 12:53:18 2015 -0800 |
committer | ChromeOS Commit Bot <[email protected]> | Wed Feb 11 06:00:18 2015 +0000 |
tree | 3927ffc053db9275a052ba2a370cbae62b5c236a | |
parent | 981a9fb68ec5fe56f57b3ecb117a0dc681bf5e83 [diff] [blame] |
update_engine: replace std::vector<char> with chromeos::Blob To make update engine consistent with the rest of platform2 code replaced std::vector<char> as the container of binary data with chromeos::Blob. BUG=None TEST=`FEATURES=test emerge-link update_engine` Change-Id: I6385fd2257d15aa24bfa74ac35512c2a06c33012 Reviewed-on: https://chromium-review.googlesource.com/247793 Reviewed-by: Gilad Arnold <[email protected]> Reviewed-by: Alex Deymo <[email protected]> Tested-by: Alex Vakulenko <[email protected]> Commit-Queue: Alex Vakulenko <[email protected]>
diff --git a/certificate_checker.h b/certificate_checker.h index b5f7a15..81e7dde 100644 --- a/certificate_checker.h +++ b/certificate_checker.h
@@ -36,7 +36,7 @@ virtual bool GetCertificateDigest(X509_STORE_CTX* x509_ctx, int* out_depth, unsigned int* out_digest_length, - unsigned char* out_digest) const; + uint8_t* out_digest) const; private: DISALLOW_COPY_AND_ASSIGN(OpenSSLWrapper);