make
Output:
*IMP*: Put space separated data in quotes.
|CLI options|:-
-e - Encodes the data string
-d - Decodes the data string
-i - takes next argument as data string
-f - takes next argument as filename
-o - takes next argument as filename and saves the output in file
(if filename is not given, it defaults to base32Out)
./base_32 -e -i "Portable cli tool o_O"
Output:
KBXXE5DBMJWGKIDDNRUSA5DPN5WCA327J4==
./base_32 -e -f infile
Output:
KN4W4QLDNN2HEYLB
./base_32 -d -f encoded
Output:
small portable base32 in C.
./base_32 -d -i KN2GC4RAMFXGIICGN5ZGWIDUNBUXGICQOJXWUZLDOQQDUKI=
Output:
Star this project :), it boosts my ego.
./base_64 -d -i KN2GC4RAMFXGIICGN5ZGWIDUNBUXGICQOJXWUZLDOQQDUKI= > out.txt
./base_64 -d -f encoded -o out
./base_64 -e -f infile -o
ps: "-o" without a parameter uses the default filename 'base32Out'
© This tool is based on ASCII charset.
Copyright for portions of project base32 are held by [Github Account SynAcktraa Owner, 2022] as part of project base32
All other copyright for project base32 are held by [Github Account SynAcktraa Owner, 2022].
Check the LICENSE for more details.