Xplatforms / mbseedkey

Seed Key Calculator/Generator for MB, Vediamo, Monaco, etc

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

API

MasterCodeIT opened this issue · comments

Not an issue but I am working on a project and when the ecu responds with the security seed request I want it to auto-generate the "seedkey". Possible to implement this in a simple api format?

Sure, there is ECUSeedKeyDLL class which could be used for that

Pick your brain for a moment?

Having a bit of trouble getting it to work. Project is built on python. I have the DLL for the ECUs.

Attempting to simplify the path via python.

Example:

dll_file = "ecu_file_name.dll"
access_level = "05"
seed = "ecu seed response"
ecuKey = ECUSeedKeyDLL(seed)
send ecukey

I can add command line args like "mbseedkey.exe -dll -acc -seed " if you wish. It will then print generated key to stdout. So you can execute it from python and read response key from stdout

I can add command line args like "mbseedkey.exe -dll -acc -seed " if you wish. It will then print generated key to stdout. So you can execute it from python and read response key from stdout

That would be good. Could you do that?

I only work on 3 specific ECU's, no way to integrate the keygen into my python project?