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

Side by Side Diff: chrome/browser/devtools/adb/android_rsa.cc

Issue 196423023: Revert of Include sync.pb.h in sync_data.h. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 9 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
« no previous file with comments | « no previous file | chrome/browser/devtools/devtools_window.cc » ('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 (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 "chrome/browser/devtools/adb/android_rsa.h" 5 #include "chrome/browser/devtools/adb/android_rsa.h"
6 6
7 #include "base/base64.h" 7 #include "base/base64.h"
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "base/prefs/pref_service.h" 9 #include "chrome/browser/prefs/pref_service_syncable.h"
10 #include "chrome/browser/profiles/profile.h" 10 #include "chrome/browser/profiles/profile.h"
11 #include "chrome/common/pref_names.h" 11 #include "chrome/common/pref_names.h"
12 #include "crypto/rsa_private_key.h" 12 #include "crypto/rsa_private_key.h"
13 #include "crypto/signature_creator.h" 13 #include "crypto/signature_creator.h"
14 #include "net/cert/asn1_util.h" 14 #include "net/cert/asn1_util.h"
15 15
16 namespace { 16 namespace {
17 17
18 const size_t kRSANumWords = 64; 18 const size_t kRSANumWords = 64;
19 const size_t kBigIntSize = 1024; 19 const size_t kBigIntSize = 1024;
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 std::string AndroidRSASign(crypto::RSAPrivateKey* key, 261 std::string AndroidRSASign(crypto::RSAPrivateKey* key,
262 const std::string& body) { 262 const std::string& body) {
263 std::vector<uint8> digest(body.begin(), body.end()); 263 std::vector<uint8> digest(body.begin(), body.end());
264 std::vector<uint8> result; 264 std::vector<uint8> result;
265 if (!crypto::SignatureCreator::Sign(key, vector_as_array(&digest), 265 if (!crypto::SignatureCreator::Sign(key, vector_as_array(&digest),
266 digest.size(), &result)) { 266 digest.size(), &result)) {
267 return std::string(); 267 return std::string();
268 } 268 }
269 return std::string(result.begin(), result.end()); 269 return std::string(result.begin(), result.end());
270 } 270 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/devtools/devtools_window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698