public void SetLoginInformationUsernameTest()
        {
            // Arrange
            byte[] derivedKey = new byte[16] {
                111, 222, 31, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 104, 15, 16
            };

            SymmetricKeyAlgorithm ska = SymmetricKeyAlgorithm.GenerateNew(SymmetricEncryptionAlgorithm.AES_CTR);

            LoginInformationSecret loginInformationSecret = new LoginInformationSecret(loginInformation, "does not matter", ska, derivedKey);

            string newUsername = "******";

            // Act
            string loginInformationUsername1 = loginInformationSecret.GetUsername(derivedKey);
            bool   shouldBeTrue = loginInformationSecret.SetUsername(newUsername, derivedKey);
            string loginInformationUsername2 = loginInformationSecret.GetUsername(derivedKey);
            bool   shouldBeFalse             = loginInformationSecret.SetUsername(newUsername, new byte[] { 1, 2, 3 });

            // Assert
            Assert.IsTrue(shouldBeTrue);
            Assert.IsFalse(shouldBeFalse);
            Assert.IsFalse(string.IsNullOrEmpty(loginInformationUsername1));
            Assert.IsFalse(string.IsNullOrEmpty(loginInformationUsername2));
            Assert.AreEqual(loginInformation.username, loginInformationUsername1);
            Assert.AreEqual(newUsername, loginInformationUsername2);
        }
Example #2
0
 public static LoginSimplified TurnIntoEditable(LoginInformationSecret loginInformationSecret, byte[] derivedPassword, int zeroBasedIndexNumber)
 {
     return(new LoginSimplified()
     {
         zeroBasedIndexNumber = zeroBasedIndexNumber,
         IsSecure = true,
         Title = loginInformationSecret.GetTitle(derivedPassword),
         URL = loginInformationSecret.GetURL(derivedPassword),
         Email = loginInformationSecret.GetEmail(derivedPassword),
         Username = loginInformationSecret.GetUsername(derivedPassword),
         Password = loginInformationSecret.GetPassword(derivedPassword),
         Notes = loginInformationSecret.GetNotes(derivedPassword),
         Icon = loginInformationSecret.GetIcon(derivedPassword),
         Category = loginInformationSecret.GetCategory(derivedPassword),
         Tags = loginInformationSecret.GetTags(derivedPassword),
         CreationTime = loginInformationSecret.GetCreationTime(derivedPassword).ToString("s", System.Globalization.CultureInfo.InvariantCulture),
         ModificationTime = loginInformationSecret.GetModificationTime(derivedPassword).ToString("s", System.Globalization.CultureInfo.InvariantCulture),
     });
 }
        public void GetLoginInformationUsernameTest()
        {
            // Arrange
            byte[] derivedKey = new byte[16] {
                111, 222, 31, 4, 5, 66, 27, 83, 9, 10, 11, 12, 13, 104, 15, 16
            };
            byte[] initialCounter = new byte[] { 0x30, 0x41, 0x5b, 0x63, 0xaa, 0xf5, 0xf6, 0xbb, 0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff };

            SettingsAES_CTR settingsAES_CTR = new SettingsAES_CTR(initialCounter);

            SymmetricKeyAlgorithm skaAES_CTR = new SymmetricKeyAlgorithm(SymmetricEncryptionAlgorithm.AES_CTR, 256, settingsAES_CTR);

            LoginInformationSecret loginInformationSecret = new LoginInformationSecret(loginInformation, "does not matter", skaAES_CTR, derivedKey);

            // Act
            string loginInformationUsername = loginInformationSecret.GetUsername(derivedKey);

            // Assert
            Assert.IsFalse(string.IsNullOrEmpty(loginInformationUsername));
            Assert.AreEqual(loginInformation.username, loginInformationUsername);
        }