Coder Social home page Coder Social logo

hexeditor's Introduction

HexEditor

Program which helps you to edit and view binary files.

#Dedicated language HexEditor decodes binary files based on its own dedicated language.

It is design only for decoding files which makes it very useful and easy.

Example:

  pos=0                               // start decoding from begining
  check=uint4(pos)                    // load unsigned integer(4 bytes)
  header_size=uint4(pos)              // pos is updated each time by the size of loaded bytes
  chunks_num=uint4(pos)
  
  // define your own custom structure with code decoding it
  custom header_chunk(pos){
      chars_num=uint4(pos)
      name     =string(pos,chars_num) // load string (begining, characters number) 
      data_pos =uint4(pos)
      repeat   =uint4(pos)
      size     =uint4(pos)[repeat]    // load uint4 repeat times
      
      out data_pos,name,size          // show for an end user only interesting information
  }
  header=header_chunk(pos)[chunks_num]// use your structure to load some data

Alt text #Safe and fast You can easily view and edit corrupted or unknown files. Alt text ##Internals

  • C++11
  • Qt4
  • Own parser and interpreter for internal language
  • Brief documentation for Doxygen

hexeditor's People

Contributors

mmcomando avatar

Stargazers

 avatar

Watchers

 avatar

Forkers

ajmartel

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.