md5-img

Crates.iomd5-img
lib.rsmd5-img
version0.1.3
sourcesrc
created_at2018-03-28 18:07:54.445181
updated_at2018-03-28 21:40:26.471491
descriptionA tool for converting text into a bmp representation of their md5 checksum
homepagehttps://github.com/ElectricCoffee/md5-bmp
repositoryhttps://github.com/ElectricCoffee/md5-bmp.git
max_upload_size
id57939
size4,316
Niko Lepka (ElectricCoffee)

documentation

README

md5-bmp

A simple tool to convert text into a bitmap representation of its md5 checksum.

To install simply type cargo install md5-img and let Cargo deal with the rest. If you do not have Cargo, you can get it here: rustup.rs.

Example:

The following image has been generated with the string "ElectricCoffee's MD5-BMP Tool", which generated the following checksum: 914329dd9233d2974886fe02ebc73dab.

This checksum has then been fed into the algorithm to produce this image:

img.png

How to Use

The command structure looks like this: md5-img <height> <text> <filename>

  • Height is the image's height (and width) in pixels
  • Text is the text you want to convert to an image
  • Filename is the file you want it to save to.
    • Note that since the tool outputs bitmaps, it's recommended to give the file a .bmp extension.

For example, typing in md5-img 512 "hello world" hello-world.bmp will generate this image:

hello-world.png

Commit count: 23

cargo fmt