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

Unified Diff: chrome/browser/chromeos/login/google_authenticator.cc

Issue 7584026: Encrypted OAuth1 all access token and secret with system salt for now, will replace this with use... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 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
Index: chrome/browser/chromeos/login/google_authenticator.cc
===================================================================
--- chrome/browser/chromeos/login/google_authenticator.cc (revision 95968)
+++ chrome/browser/chromeos/login/google_authenticator.cc (working copy)
@@ -412,6 +412,17 @@
NOTIMPLEMENTED();
}
+std::string GoogleAuthenticator::EncryptToken(const std::string& unused) {
+ NOTIMPLEMENTED();
+ return std::string();
+}
+
+std::string GoogleAuthenticator::DecryptToken(const std::string& unused) {
+ NOTIMPLEMENTED();
+ return std::string();
+}
+
+
void GoogleAuthenticator::LoadSystemSalt() {
if (!system_salt_.empty())
return;
« no previous file with comments | « chrome/browser/chromeos/login/google_authenticator.h ('k') | chrome/browser/chromeos/login/login_performer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698