cha-rs
A simple library and app to extract specific characters from an input string. Useful for when you need to verify arbitrary characters of your long random password for your bank.
For example:
|
# 3 => C
# 11 => !
# 16 => p
(Please note, those characters are made up and do not belong to any of my passwords! :D)
Originally I created a pull request to Bitwarden (https://github.com/bitwarden/clients/pull/5042) to add this functionality to the command line app. But that feels a bit over-engineered and it is more inline with the Unix philosophy to create a small program that does one thing well, accepting text as its input, and writing text as its output. So here it is!
Installation
Cargo
- Install the rust toolchain in order to have cargo installed by following this guide.
- run
cargo install cha-rs
From source
- Build and install the executable from the source code.
Docker
|
Contribution
See CONTRIBUTING.md.
Notes
Project template generated using https://rust-github.github.io/.