Encrypt your e-mail with PGP and random profanity
11–20 of 68 posts
Re: Encrypt your e-mail with PGP and random profanity
#12Despite the banality of this project. I think the idea itself could be interesting: That is, mapping your encrypted email into authentic looking text. Sending the text. Then your receiver would need to know that the text is encrypted (don't tell them in the email). This /might/ be a temporarily effective dodge against bulk storage of PGP encrypted emails.
That is an interesting idea, but I'm not sure that it's actually doable. How would you do implement it? Moreover it seems to me that it would be likely not worth the work, because training some ML algorithm to detect this kind of messages would be always much easier than to design and implement this kind of mapping in the first place.
Re: Encrypt your e-mail with PGP and random profanity
#13Re: Encrypt your e-mail with PGP and random profanity
#14Despite the banality of this project. I think the idea itself could be interesting: That is, mapping your encrypted email into authentic looking text. Sending the text. Then your receiver would need to know that the text is encrypted (don't tell them in the email). This /might/ be a temporarily effective dodge against bulk storage of PGP encrypted emails.
That is an interesting idea, but I'm not sure that it's actually doable. How would you do implement it? Moreover it seems to me that it would be likely not worth the work, because training some ML algorithm to detect this kind of messages would be always much easier than to design and implement this kind of mapping in the first place.
Re: Encrypt your e-mail with PGP and random profanity
#15Despite the banality of this project. I think the idea itself could be interesting: That is, mapping your encrypted email into authentic looking text. Sending the text. Then your receiver would need to know that the text is encrypted (don't tell them in the email). This /might/ be a temporarily effective dodge against bulk storage of PGP encrypted emails.
Using FTE you can make ciphertext match an arbitrary regex. In the case of tor they are making ciphertext match HTTP traffic.
Re: Encrypt your e-mail with PGP and random profanity
#16Re: Encrypt your e-mail with PGP and random profanity
#17Despite the banality of this project. I think the idea itself could be interesting: That is, mapping your encrypted email into authentic looking text. Sending the text. Then your receiver would need to know that the text is encrypted (don't tell them in the email). This /might/ be a temporarily effective dodge against bulk storage of PGP encrypted emails.
Re: Encrypt your e-mail with PGP and random profanity
#18Despite the banality of this project. I think the idea itself could be interesting: That is, mapping your encrypted email into authentic looking text. Sending the text. Then your receiver would need to know that the text is encrypted (don't tell them in the email). This /might/ be a temporarily effective dodge against bulk storage of PGP encrypted emails.
Re: Encrypt your e-mail with PGP and random profanity
#19As far as I can tell, this is mapping each base64 character of the encrypted blob to one full word? This will obviously multiply the message size a great deal.
var bytes = atob(base64msg),
swearsMsg = '';
for (var i = 0; i
Of course, it's still less efficient than base64, but it's an improvement. :)Re: Encrypt your e-mail with PGP and random profanity
#20A possible side effect to this, could be avoiding ads in Gmail[1], even though I fear it to be an urban legend.. 1: http://lifehacker.com/5330642/massacre-gmail-ads-with-these-...