Displaying 1 result from an estimated 1 matches for "peerkey".
Did you mean:
peer_key
2018 May 17
1
Decryption method for Maildir messages stored by mail_crypt plugin
...ssages.
Relevant plugin config:
mail_crypt_curve = prime256v1
mail_crypt_global_private_key = <pirvkey>
mail_crypt_global_public_key = <pubkey>
mail_crypt_save_version = 2
Method I attempted for manual decryption is listed below:
openssl pkeyutl -derive -inkey mailcrypt.key -peerkey mailcrypt.pub -out
shared_secret.bin
openssl enc -aes256 -base64 -k $(base64 shared_secret.bin) -d -in test.enc
-out test.txt
Openssl reports an error reading the input file, but it isn't permissions
related.
I started looking for the encryption/decryption method in the source but
figure it...