Jump to content

Recommended Posts

Posted

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!

  • Moderators
Posted

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

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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:

  Reveal hidden contents

 

Posted

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.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...