| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 // | 4 // |
| 5 // Utility functions to check executable signatures for malicious binary | 5 // Utility functions to check executable signatures for malicious binary |
| 6 // detection. Each platform has its own implementation of this class. | 6 // detection. Each platform has its own implementation of this class. |
| 7 | 7 |
| 8 #ifndef CHROME_BROWSER_SAFE_BROWSING_SIGNATURE_UTIL_H_ | 8 #ifndef CHROME_BROWSER_SAFE_BROWSING_SIGNATURE_UTIL_H_ |
| 9 #define CHROME_BROWSER_SAFE_BROWSING_SIGNATURE_UTIL_H_ | 9 #define CHROME_BROWSER_SAFE_BROWSING_SIGNATURE_UTIL_H_ |
| 10 #pragma once | 10 #pragma once |
| 11 | 11 |
| 12 #include "base/basictypes.h" |
| 13 #include "base/memory/ref_counted.h" |
| 14 |
| 12 class FilePath; | 15 class FilePath; |
| 13 | 16 |
| 14 namespace safe_browsing { | 17 namespace safe_browsing { |
| 15 namespace signature_util { | 18 class ClientDownloadRequest_SignatureInfo; |
| 16 | 19 |
| 17 // Returns true if the given file path contains a signature. No checks are | 20 class SignatureUtil : public base::RefCountedThreadSafe<SignatureUtil> { |
| 18 // performed as to the validity of the signature. | 21 public: |
| 19 bool IsSigned(const FilePath& file_path); | 22 SignatureUtil(); |
| 20 | 23 |
| 21 } // namespace signature_util | 24 // Fills in the DownloadRequest_SignatureInfo for the given file path. |
| 25 // This method may be called on any thread. |
| 26 virtual void CheckSignature( |
| 27 const FilePath& file_path, |
| 28 ClientDownloadRequest_SignatureInfo* signature_info); |
| 29 |
| 30 protected: |
| 31 friend class base::RefCountedThreadSafe<SignatureUtil>; |
| 32 virtual ~SignatureUtil(); |
| 33 |
| 34 private: |
| 35 DISALLOW_COPY_AND_ASSIGN(SignatureUtil); |
| 36 }; |
| 22 } // namespace safe_browsing | 37 } // namespace safe_browsing |
| 23 | 38 |
| 24 #endif // CHROME_BROWSER_SAFE_BROWSING_SIGNATURE_UTIL_H_ | 39 #endif // CHROME_BROWSER_SAFE_BROWSING_SIGNATURE_UTIL_H_ |
| OLD | NEW |