| OLD | NEW |
| 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 "chrome/browser/prefs/pref_service_syncable.h" | 9 #include "base/prefs/pref_service.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 Loading... |
| 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 } |
| OLD | NEW |