A command line tool to interact with multiple (and simple) encoding and cryptography algorithms.
crypto base64 encode hello that's a text !
this will encode "encode hello that's a text !" in base64 and output the result to stdout
crypto base64 decode aGVsbG8gdGhhdCdzIGEgdGV4dCAh
this will decode "aGVsbG8gdGhhdCdzIGEgdGV4dCAh" and output the result to stdout
crypto xor <key> that's a text !
this will encrypt the text using the given key if the text is not encrypted. and it will decrypt the text if the given text is encrypted.
- crypto base64 (encode/decode) <encoded/plain text>
- crypto xor <key> <encoded/plain text>
- crypto des (encrypt/decrypt) <encrypted/plain text>
- crypto tdes (encrypt/decrypt) <encrypted/plain text>