Пример #1
0
 public static void TestAuthResponseMsg_ComputeChallengeHash_ComputesCorrectResult()
 {
     Assert.AreEqual(HASH_RESULT, AuthResponseMsg.ComputeChallengeHash(CHALLENGE_BYTES, PASSWORD));
 }
Пример #2
0
 public static void TestAuthResponseMsg_ComputeChallengeHash_DoesntThrow()
 {
     Assert.DoesNotThrow(() => AuthResponseMsg.ComputeChallengeHash(CHALLENGE_BYTES, PASSWORD));
 }