| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 NET_CERT_INTERNAL_SIGNATURE_ALGORITHM_H_ | 5 #ifndef NET_CERT_INTERNAL_SIGNATURE_ALGORITHM_H_ |
| 6 #define NET_CERT_INTERNAL_SIGNATURE_ALGORITHM_H_ | 6 #define NET_CERT_INTERNAL_SIGNATURE_ALGORITHM_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | |
| 11 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "net/base/net_export.h" | 13 #include "net/base/net_export.h" |
| 14 | 14 |
| 15 namespace net { | 15 namespace net { |
| 16 | 16 |
| 17 namespace der { | 17 namespace der { |
| 18 class Input; | 18 class Input; |
| 19 } // namespace der | 19 } // namespace der |
| 20 | 20 |
| 21 // The digest algorithm used within a signature. | 21 // The digest algorithm used within a signature. |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 const SignatureAlgorithmId algorithm_; | 99 const SignatureAlgorithmId algorithm_; |
| 100 const DigestAlgorithm digest_; | 100 const DigestAlgorithm digest_; |
| 101 const scoped_ptr<SignatureAlgorithmParameters> params_; | 101 const scoped_ptr<SignatureAlgorithmParameters> params_; |
| 102 | 102 |
| 103 DISALLOW_COPY_AND_ASSIGN(SignatureAlgorithm); | 103 DISALLOW_COPY_AND_ASSIGN(SignatureAlgorithm); |
| 104 }; | 104 }; |
| 105 | 105 |
| 106 } // namespace net | 106 } // namespace net |
| 107 | 107 |
| 108 #endif // NET_CERT_INTERNAL_SIGNATURE_ALGORITHM_H_ | 108 #endif // NET_CERT_INTERNAL_SIGNATURE_ALGORITHM_H_ |
| OLD | NEW |