Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1372)

Unified Diff: chrome/browser/download/base_file.h

Issue 6023006: Add support to sha256 hash the downloaded file.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/download/base_file.h
===================================================================
--- chrome/browser/download/base_file.h (revision 70630)
+++ chrome/browser/download/base_file.h (working copy)
@@ -10,6 +10,7 @@
#include "base/file_path.h"
#include "base/linked_ptr.h"
+#include "base/scoped_ptr.h"
#include "chrome/browser/power_save_blocker.h"
#include "googleurl/src/gurl.h"
@@ -17,6 +18,9 @@
class FileStream;
}
+struct SHA256ContextStr;
+typedef struct SHA256ContextStr SHA256Context;
Paweł Hajdan Jr. 2011/01/11 08:28:21 nit: Why do we need this typedef? It seems to add
lzheng 2011/01/12 02:11:54 I agree it looks confusing. Since the original SHA
+
// File being downloaded and saved to disk. This is a base class
// for DownloadFile and SaveFile, which keep more state information.
class BaseFile {
@@ -25,7 +29,8 @@
const GURL& source_url,
const GURL& referrer_url,
int64 received_bytes,
- const linked_ptr<net::FileStream>& file_stream);
+ const linked_ptr<net::FileStream>& file_stream,
+ bool calculate_hash);
Randy Smith (Not in Mondays) 2011/01/11 18:29:51 A tacky question, but I at least want to ask: What
lzheng 2011/01/12 02:11:54 Answered at the beginning of this email. On 2011/
~BaseFile();
bool Initialize();
@@ -53,6 +58,10 @@
bool in_progress() const { return file_stream_ != NULL; }
int64 bytes_so_far() const { return bytes_so_far_; }
+ // Set |hash| with sha256 digest for the file. The |hash| would be a
+ // lower-case hex string. Returns false if the digest is not calcuated.
Paweł Hajdan Jr. 2011/01/11 08:28:21 nit: How about "Returns true on success" to avoid
Randy Smith (Not in Mondays) 2011/01/11 18:29:51 At what point will the digest be calculated? Is i
lzheng 2011/01/12 02:11:54 Done.
lzheng 2011/01/12 02:11:54 It should be. I added verification for the in_prog
+ virtual bool GetSha256Hash(std::string* hash);
+
virtual std::string DebugString() const;
protected:
@@ -66,6 +75,8 @@
bool path_renamed_;
private:
+ static const size_t kSha256HashLen_ = 32;
Paweł Hajdan Jr. 2011/01/11 08:28:21 nit: The underscore at the end looks weird, I thin
lzheng 2011/01/12 02:11:54 Done.
+
// Source URL for the file being downloaded.
GURL source_url_;
@@ -81,6 +92,13 @@
// RAII handle to keep the system from sleeping while we're downloading.
PowerSaveBlocker power_save_blocker_;
+ // Indicates if sha256 hash should be calculated for the downloaded file.
+ bool calculate_hash_;
+
+ scoped_ptr<SHA256Context> sha_context_;
Paweł Hajdan Jr. 2011/01/11 08:28:21 nit: Could you add a short comment?
lzheng 2011/01/12 02:11:54 Done.
+
+ unsigned char sha256_hash_[kSha256HashLen_];
+
DISALLOW_COPY_AND_ASSIGN(BaseFile);
};
Property changes on: chrome/browser/download/base_file.h
___________________________________________________________________
Added: svn:eol-style
+ LF

Powered by Google App Engine
This is Rietveld 408576698