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

Side by Side Diff: components/webcrypto/algorithms/rsa_ssa.cc

Issue 1549993003: Switch to standard integer types in components/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #include <stdint.h>
6
5 #include "components/webcrypto/algorithms/rsa.h" 7 #include "components/webcrypto/algorithms/rsa.h"
6 #include "components/webcrypto/algorithms/rsa_sign.h" 8 #include "components/webcrypto/algorithms/rsa_sign.h"
7 #include "components/webcrypto/status.h" 9 #include "components/webcrypto/status.h"
8 10
9 namespace webcrypto { 11 namespace webcrypto {
10 12
11 namespace { 13 namespace {
12 14
13 class RsaSsaImplementation : public RsaHashedAlgorithm { 15 class RsaSsaImplementation : public RsaHashedAlgorithm {
14 public: 16 public:
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 } 50 }
49 }; 51 };
50 52
51 } // namespace 53 } // namespace
52 54
53 scoped_ptr<AlgorithmImplementation> CreateRsaSsaImplementation() { 55 scoped_ptr<AlgorithmImplementation> CreateRsaSsaImplementation() {
54 return make_scoped_ptr(new RsaSsaImplementation); 56 return make_scoped_ptr(new RsaSsaImplementation);
55 } 57 }
56 58
57 } // namespace webcrypto 59 } // namespace webcrypto
OLDNEW
« no previous file with comments | « components/webcrypto/algorithms/rsa_sign.cc ('k') | components/webcrypto/algorithms/rsa_ssa_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698