Idea for better vendor/buyer communication? : DarknetMarketsNoobs | Torhoo darknet markets
I have had this idea for a while, and I wanted to share it. What if the vendor/buyer used PGP to exchange an AES-256 key that they use for the rest of their communications, and then if there was a problem from either side, either side can tell the market staff the AES-256 key so that way the staff can read past messages without having to compromise a PGP key. If you are worried this would be a security issue, remember, that if either side wanted, they could always disclose encrypted information anyway. Thoughts???
To get the session key of a message (where one of the recipients is your private key), run:
# gpg --show-session-key
Then paste in the encrypted message.
You will get a line back starting with "gpg: session key: " and the value after this is the session key, which if you give to someone they will be able to read the content of that specific message only, and there is no need to disclose your private key.
To then decrypt a message using a session key you run:
# gpg --override-session-key "value_of_session_key_from_above"
Paste in the encrypted message, and it will show it to you without needing the private key or any passphrase.
So if you had 5 messages you wanted to share with the market, you would have to run --show-session-key for each one and provide them with each individual PGP message and the associated key that goes with each one.