exaexa / codecrypt

Post-quantum cryptography tool (THIS REPOSITORY IS ONLY A MIRROR OF THE MAIN ONE, PLEASE DO NOT FILE BUGS HERE)
https://gitea.blesmrt.net/exa/codecrypt
GNU Lesser General Public License v3.0
308 stars 40 forks source link

how to send message and mdpc code #14

Closed skyup259 closed 8 years ago

skyup259 commented 8 years ago

sir, i have done key generation by using given command: ccr -g sig --name "John Doe" # your signature key ccr -g enc --name "John Doe" # your encryption key but i didn't understand how to send message to anyone(i saw the example command but didn't understand)

also, i saw in pull request that mdpc code is given.can we implement mdpc code in codecrypt?

exaexa commented 8 years ago

MDPC is already implemented and default for the encryption in the last release.

Codecrypt works exactly like GnuPG with the messages: it doesn't actually send the messages, just takes your data and creates the encrypted/signed version of them that you can send to others via standard insecure means (mail/file transfer).

Just to summarize it up:

For testing, you can also pretend you're Timmy to save bandwidth.

Also, for questions, please do not open issues -- ask on IRC or on some forums.

skyup259 commented 8 years ago

thank you