Esempio n. 1
0
        public void GenerateRecoveryPhraseHash()
        {
            string testRecoveryPhrase = "moon jump cat bump horse flip rope";
            string result             = HashGenerator.GenerateRecoveryPhraseHash(testRecoveryPhrase);

            string expected = "1F3F6F3AE09D58F17DD4B8F46AE8BF6B";

            Assert.AreEqual(expected, result);
        }