Created
May 26, 2016 00:54
-
-
Save MtucX/ee68ac5b96c6508e500a267cc0d3f74c to your computer and use it in GitHub Desktop.
Revisions
-
MtucX created this gist
May 26, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ #include <Crypt.au3> $dzx = '0x309cd3800aacbd003ac36199fa537295' $pass = InputBox("MtucX", "EAsy one", "", "*") $password = _Crypt_HashData($pass, $CALG_MD5) If $password = $dzx Then MsgBox(16, "Done ", "You can send me the pass") Else MsgBox(16, "lammer", "You entered wrong password") EndIf