dcousens / hexxer

A streaming hex encoding/decoding tool, pipes stdin to stdout

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

hexxer

A streaming hex encoding/decoding tool, pipes stdin to stdout.

Byte-for-byte, simple, not UTF8 aware (if that matters).

Throws on invalid characters unless --decode-any is used.

Examples

Decoding

> echo "6a" | hexxer -d
j

> echo "6b" | hexxer --decode
k

Encoding

> echo "j" | hexxer
6a0a

> echo -n "j" | hexxer
6a

LICENSE MIT

About

A streaming hex encoding/decoding tool, pipes stdin to stdout

License:MIT License


Languages

Language:C++ 75.4%Language:Shell 20.3%Language:Makefile 4.3%