+----[drunken]----+ |..+.. oo+o. | | *.* o +.o. | |= = o * .E+ | |+. ..+ = +.. | |o ...+ S.o | | .o .....= . | |.. o .+ + | |. = + | | ..= | +----[bishop]-----+ |
CLI app for visualising hex or binary data using The Drunken Bishop algorithm implemented in Rust
Drunken Bishop is the algorithm used in OpenSSH's ssh-keygen
for visualising generated keys
Rust library:
drunken-bishop
- Library for visualizing any &[u8]
or Read
Reference used for this implementation: http://www.dirk-loss.de/sshvis/drunken_bishop.pdf
``` $ drunken-bishop --help drunken-bishop 0.1.0 Visualizes keys and hashes using OpenSSH's Drunken Bishop algorithm
USAGE: drunken-bishop [FLAGS] [OPTIONS] [hex]
FLAGS: -q, --quiet Don't echo hex input --help Prints help information -V, --version Prints version information
OPTIONS:
-i Input file; use '-' for stdin
--chars
ARGS:
$ bishop $(echo foobar | sha256sum | cut -d' ' -f1)
``` Fingerprint of: aec070645fe53ee3b3763059376134f058cc337247c978add178b6ccdfb0019f
+-----------------+ | . .=++| | o o=@=| | o . . .*=@.| | o . . . . E+ | | . . . S +o . =o| | + . .+o . o| | o . oo | | . . .o. | | . ... | +-----------------+ ```
-i
$ cat foobar.bin | bishop -i -
or
$ bishop -i foobar.bin
+-----------------+
| . .=*++|
| o o=@=*|
| o . . .*=@.|
| o . . . . E+ |
| . . . S +o . =o|
| + . .+o . o|
| o . oo |
| . . .o. |
| . ... |
+-----------------+
Note that with -i
option data is treated as binary, not hex
Char list is a string each char of which is treated as:
indexing starts from 1
Index | Description | Default |
-------|-------------------------|------------------|
1
| Field background | |
2..n
| Chars used for drawing | .o+=*BOX@%&#/^
|
n+1
| Char for start position | S
|
n+2
| Char for last position | E
|
Char list must be at least 4 chars long, but secure char list is at least 18 chars long and only consists of clearly distinguishable symbols.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.