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

Side by Side Diff: net/cert/internal/signature_algorithm.h

Issue 1535363003: Switch to standard integer types in net/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: stddef Created 5 years 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 unified diff | Download patch
« no previous file with comments | « net/cert/internal/parse_certificate.h ('k') | net/cert/internal/signature_policy.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « net/cert/internal/parse_certificate.h ('k') | net/cert/internal/signature_policy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698