-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
125 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
|
||
|
||
|
||
|
||
|
||
|
||
### Exit | ||
|
||
|
||
|
||
``` | ||
$ tird | ||
MENU | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
0. Exit 1. Show info | ||
2. Encrypt 3. Decrypt | ||
4. Embed 5. Extract | ||
6. Encrypt & embed 7. Extract & decrypt | ||
8. Create w/ random 9. Overwrite w/ random | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
[01] Select an option [0-9]: 0 | ||
I: action #0: exit | ||
``` | ||
|
||
|
||
|
||
|
||
|
||
``` | ||
$ tird | ||
MENU | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
0. Exit 1. Show info | ||
2. Encrypt 3. Decrypt | ||
4. Embed 5. Extract | ||
6. Encrypt & embed 7. Extract & decrypt | ||
8. Create w/ random 9. Overwrite w/ random | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
[01] Select an option [0-9]: ^C | ||
I: caught signal 2 | ||
``` | ||
|
||
|
||
``` | ||
$ tird | ||
MENU | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
0. Exit 1. Show info | ||
2. Encrypt 3. Decrypt | ||
4. Embed 5. Extract | ||
6. Encrypt & embed 7. Extract & decrypt | ||
8. Create w/ random 9. Overwrite w/ random | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
[01] Select an option [0-9]: 8 | ||
I: action #8: create a file with random bytes | ||
[07] Output file: ^C | ||
E: caught signal 2 | ||
``` | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
|
||
|
||
|
||
### Show info | ||
|
||
|
||
|
||
``` | ||
$ tird | ||
MENU | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
0. Exit 1. Show info | ||
2. Encrypt 3. Decrypt | ||
4. Embed 5. Extract | ||
6. Encrypt & embed 7. Extract & decrypt | ||
8. Create w/ random 9. Overwrite w/ random | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
[01] Select an option [0-9]: 1 | ||
I: action #1: show info | ||
I: tird v0.9.0 | ||
A tool for writing random bytes, | ||
encrypting file contents, | ||
and hiding encrypted data. | ||
Homepage: https://github.com/hakavlad/tird | ||
``` | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|