public void SetLoginInformationNotesTest()
        {
            // 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 newNotes = "future text that is happy and joyful for all purposes...";

            // Act
            bool   shouldBeTrue           = loginInformationSecret.SetNotes(newNotes, derivedKey);
            string loginInformationNotes2 = loginInformationSecret.GetNotes(derivedKey);
            bool   shouldBeFalse          = loginInformationSecret.SetNotes(newNotes, new byte[] { 1, 2, 3 });

            // Assert
            Assert.IsTrue(shouldBeTrue);
            Assert.IsFalse(shouldBeFalse);
            Assert.IsFalse(string.IsNullOrEmpty(loginInformationNotes2));
            Assert.AreEqual(newNotes, loginInformationNotes2);
        }