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

Side by Side Diff: chrome/browser/chromeos/login/managed/supervised_user_authentication_unittest.cc

Issue 378513005: [Athena] Extract Chrome OS authentication stack (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix includes in one more test Created 6 years, 5 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 | Annotate | Revision Log
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 #include "chrome/browser/chromeos/login/managed/supervised_user_authentication.h " 4 #include "chrome/browser/chromeos/login/managed/supervised_user_authentication.h "
5 5
6 #include "base/values.h" 6 #include "base/values.h"
7 #include "chrome/browser/chromeos/login/auth/key.h"
8 #include "chrome/browser/chromeos/login/users/supervised_user_manager.h" 7 #include "chrome/browser/chromeos/login/users/supervised_user_manager.h"
8 #include "chromeos/login/auth/key.h"
9 #include "testing/gtest/include/gtest/gtest.h" 9 #include "testing/gtest/include/gtest/gtest.h"
10 10
11 namespace chromeos { 11 namespace chromeos {
12 12
13 class SupervisedUserAuthenticationTest : public testing::Test { 13 class SupervisedUserAuthenticationTest : public testing::Test {
14 protected: 14 protected:
15 SupervisedUserAuthenticationTest(); 15 SupervisedUserAuthenticationTest();
16 virtual ~SupervisedUserAuthenticationTest(); 16 virtual ~SupervisedUserAuthenticationTest();
17 17
18 // testing::Test: 18 // testing::Test:
(...skipping 24 matching lines...) Expand all
43 43
44 Key key(password); 44 Key key(password);
45 key.Transform(Key::KEY_TYPE_SALTED_PBKDF2_AES256_1234, salt); 45 key.Transform(Key::KEY_TYPE_SALTED_PBKDF2_AES256_1234, salt);
46 ASSERT_EQ(expected_salted_password, key.GetSecret()); 46 ASSERT_EQ(expected_salted_password, key.GetSecret());
47 std::string signature = SupervisedUserAuthentication::BuildPasswordSignature( 47 std::string signature = SupervisedUserAuthentication::BuildPasswordSignature(
48 key.GetSecret(), revision, signature_key); 48 key.GetSecret(), revision, signature_key);
49 ASSERT_EQ(expected_signature, signature); 49 ASSERT_EQ(expected_signature, signature);
50 } 50 }
51 51
52 } // namespace chromeos 52 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698