Exemplo n.º 1
0
 public static void TestAuthResponseMsg_ComputeChallengeHash_ComputesCorrectResult()
 {
     Assert.AreEqual(HASH_RESULT, AuthResponseMsg.ComputeChallengeHash(CHALLENGE_BYTES, PASSWORD));
 }
Exemplo n.º 2
0
 public static void TestAuthResponseMsg_ComputeChallengeHash_DoesntThrow()
 {
     Assert.DoesNotThrow(() => AuthResponseMsg.ComputeChallengeHash(CHALLENGE_BYTES, PASSWORD));
 }