| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #ifndef BASE_CRYPTO_SIGNATURE_VERIFIER_H_ | 5 #ifndef BASE_CRYPTO_SIGNATURE_VERIFIER_H_ |
| 6 #define BASE_CRYPTO_SIGNATURE_VERIFIER_H_ | 6 #define BASE_CRYPTO_SIGNATURE_VERIFIER_H_ |
| 7 | 7 |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 | 9 |
| 10 #if defined(OS_LINUX) | 10 #if defined(OS_LINUX) |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 | 96 |
| 97 HCRYPTHASH hash_object_; | 97 HCRYPTHASH hash_object_; |
| 98 | 98 |
| 99 HCRYPTKEY public_key_; | 99 HCRYPTKEY public_key_; |
| 100 #endif | 100 #endif |
| 101 }; | 101 }; |
| 102 | 102 |
| 103 } // namespace base | 103 } // namespace base |
| 104 | 104 |
| 105 #endif // BASE_CRYPTO_SIGNATURE_VERIFIER_H_ | 105 #endif // BASE_CRYPTO_SIGNATURE_VERIFIER_H_ |
| OLD | NEW |