Recent content by TecHunter

  1. T

    [TOOL][WIN] Offline TXT FlightRecord to CSV Converter

    OMG I just saw the hex code lol. nice finding
  2. T

    [TOOL][WIN] Offline TXT FlightRecord to CSV Converter

    yes basically the getKey does this : compute crc from a seed malloc an array with length matching the data. fill crc in this array by repeating it + some byte at the end to check consistency(??) return key array As for the conversion, it did work. just dont use the first byte.
  3. T

    [TOOL][WIN] Offline TXT FlightRecord to CSV Converter

    Hi there, I'm the one one RE post, thanks for the input that helps a lot!!! Seems like the seed used is a 64bit key From DecryptData function we have the 4th arg of getKey as : (2596069104u * (unsigned __int64)v8 >> 32) + 305419896 * v8 v8 seems to be the first byte of the data field. This...