| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "components/sync/base/nigori.h" | 5 #include "components/sync/base/nigori.h" |
| 6 | 6 |
| 7 #include <string> | |
| 8 | |
| 9 #include "base/strings/string_util.h" | 7 #include "base/strings/string_util.h" |
| 10 #include "testing/gtest/include/gtest/gtest.h" | 8 #include "testing/gtest/include/gtest/gtest.h" |
| 11 | 9 |
| 12 namespace syncer { | 10 namespace syncer { |
| 13 namespace { | 11 namespace { |
| 14 | 12 |
| 15 TEST(SyncNigoriTest, Permute) { | 13 TEST(SyncNigoriTest, Permute) { |
| 16 Nigori nigori; | 14 Nigori nigori; |
| 17 EXPECT_TRUE(nigori.InitByDerivation("example.com", "username", "password")); | 15 EXPECT_TRUE(nigori.InitByDerivation("example.com", "username", "password")); |
| 18 | 16 |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 EXPECT_EQ(original, plaintext); | 147 EXPECT_EQ(original, plaintext); |
| 150 | 148 |
| 151 std::string permuted1, permuted2; | 149 std::string permuted1, permuted2; |
| 152 EXPECT_TRUE(nigori1.Permute(Nigori::Password, original, &permuted1)); | 150 EXPECT_TRUE(nigori1.Permute(Nigori::Password, original, &permuted1)); |
| 153 EXPECT_TRUE(nigori2.Permute(Nigori::Password, original, &permuted2)); | 151 EXPECT_TRUE(nigori2.Permute(Nigori::Password, original, &permuted2)); |
| 154 EXPECT_EQ(permuted1, permuted2); | 152 EXPECT_EQ(permuted1, permuted2); |
| 155 } | 153 } |
| 156 | 154 |
| 157 } // anonymous namespace | 155 } // anonymous namespace |
| 158 } // namespace syncer | 156 } // namespace syncer |
| OLD | NEW |