haijie1223 Posted March 9, 2017 Posted March 9, 2017 the python code : key = '\x47\x8D\xA5\x0B\xF9\xE3\xD2\xCF' crypto = DES.new(key, DES.MODE_ECB) data = open('1.txt', 'rb').read() data_decrypted = crypto.decrypt(data) my autoit code: #NoTrayIcon #RequireAdmin #pre_usex64=n #include <Crypt.au3> Local $hFile = FileOpen('1.txt', 16) Local $data = FileRead($hFile) FileClose($hFile) Local $key = '0x478DA50BF9E3D2CF' Local $crypto = _Crypt_DeriveKey($key, $CALG_DES) ; Local $data_decrypted = _Crypt_DecryptData($data, $crypto, $CALG_USERKEY) MsgBox(0,@error , $data_decrypted) the autoit return -1,error=20。 how to switch this Python Code to Autoit code,Thanks!
haijie1223 Posted March 10, 2017 Author Posted March 10, 2017 (edited) 别沉了帖子 Translation: Bump Edited March 10, 2017 by Melba23 Added translation
Moderators Melba23 Posted March 10, 2017 Moderators Posted March 10, 2017 haijie1223, Please do not bump your own threads within 24 hours. Remember this is not a 24/7 support forum - those who answer are only here because they like helping others and have some time to spare. You just have to wait until someone who knows something about your particular problem, and is willing to help, comes online. Be patient and someone will answer eventually. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
RTFC Posted March 10, 2017 Posted March 10, 2017 Just thought I'd mention that DES has been broken since 1999. It is insecure, and should no longer be used for protection purposes in the real world. My Contributions and Wrappers Spoiler BitMaskSudokuSolver BuildPartitionTable CodeCrypter CodeScanner DigitalDisplay Eigen4AutoIt FAT Suite HighMem MetaCodeFileLibrary OSgrid Pool RdRand SecondDesktop SimulatedAnnealing Xbase I/O
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now