Exchanging confidential information - the simplest way - using a puzzle as a key

6 months ago
80

Exchanging confidential information - the simplest way
You can also store all your passwords in a file protected with a long puzzle that only you know.
https://github.com/alanthie/Encryptions

Sender encrypting test.zip using a puzzle:
crypto encode -p puzzle.txt -i test.zip -o test.zip.encrypted -q puzzle_qa.txt

puzzle.txt
REM ==================================
REM Your puzzle questions start here
REM ==================================
QA "Vaccine is poison" : "of course"
QA "Politics is a clown show for morons" : "of course"
QA "Wild fires are DEW" : "of course"
REM =================================
REM Your puzzle questions end here
REM =================================
REM

Receiver decrypting test.zip.encrypted using a puzzle challenge:
(must resolve puzzle_qa.txt, save as puzzle.txt.full for example)
crypto decode -p puzzle.txt.full -i test.zip.encrypted -o test.zip

puzzle_qa.txt
REM ==================================
REM Your puzzle questions start here
REM ==================================
QA "Vaccine is poison" : "oxxxxxxxe"
QA "Politics is a clown show for morons" : "oxxxxxxxe"
QA "Wild fires are DEW" : "oxxxxxxxe"
REM =================================
REM Your puzzle questions end here
REM =================================
REM

https://github.com/alanthie/Encryptions

Loading comments...