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

Unified Diff: chrome/browser/sync/util/cryptographer.cc

Issue 3013047: Let the Nigori client import and export raw encryption keys. (Closed)
Patch Set: Rename Init and Import Created 10 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/sync/util/nigori.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/util/cryptographer.cc
diff --git a/chrome/browser/sync/util/cryptographer.cc b/chrome/browser/sync/util/cryptographer.cc
index f323d17eb82d88ef8689c24c7b6a26a6d300fad3..7a5e1730d9a64d53f0ec434ea804d5938955da9a 100644
--- a/chrome/browser/sync/util/cryptographer.cc
+++ b/chrome/browser/sync/util/cryptographer.cc
@@ -83,8 +83,10 @@ bool Cryptographer::AddKey(const KeyParams& params) {
DCHECK(NULL == pending_keys_.get());
// Create the new Nigori and make it the default encryptor.
- scoped_ptr<Nigori> nigori(new Nigori(params.hostname));
- if (!nigori->Init(params.username, params.password)) {
+ scoped_ptr<Nigori> nigori(new Nigori);
+ if (!nigori->InitByDerivation(params.hostname,
+ params.username,
+ params.password)) {
NOTREACHED(); // Invalid username or password.
return false;
}
@@ -115,8 +117,10 @@ void Cryptographer::SetPendingKeys(const sync_pb::EncryptedData& encrypted) {
}
bool Cryptographer::DecryptPendingKeys(const KeyParams& params) {
- Nigori nigori(params.hostname);
- if (!nigori.Init(params.username, params.password)) {
+ Nigori nigori;
+ if (!nigori.InitByDerivation(params.hostname,
+ params.username,
+ params.password)) {
NOTREACHED();
return false;
}
@@ -142,8 +146,10 @@ void Cryptographer::InstallKeys(const std::string& default_key_name,
const sync_pb::NigoriKey key = bag.key(i);
// Only use this key if we don't already know about it.
if (nigoris_.end() == nigoris_.find(key.name())) {
- scoped_ptr<Nigori> new_nigori(new Nigori(key.hostname()));
- if (!new_nigori->Init(key.username(), key.password())) {
+ scoped_ptr<Nigori> new_nigori(new Nigori);
+ if (!new_nigori->InitByDerivation(key.hostname(),
+ key.username(),
+ key.password())) {
NOTREACHED();
continue;
}
« no previous file with comments | « no previous file | chrome/browser/sync/util/nigori.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698