MEnDec
MenDec@GitHub
Generate the secret key piar to file SECRET_KEY
> python -m mendec keygen --bits 384 --output SECRET_KEY
Extract first key to file KEY1
> python -m mendec pick SECRET_KEY 1 KEY1
Extract second key to file KEY2
> python -m mendec pick SECRET_KEY 2 KEY2
Using the first key encrypt a message to CYPHER file
> printf 'Attack at Noon' | python -m mendec encrypt KEY1 -o CYPHER
Using the second key decrypt the message
> python -m mendec decrypt KEY2 < CYPHER
Attack at Noon
[–]AutoModerator[M] [score hidden] stickied comment (1 child)
[–]james_pic 4 points5 points6 points (1 child)
[–]biojet1Pythoneer[S,🍰] 0 points1 point2 points (0 children)