Would be fun to switch from profanities to things like "tor NSA bitcoin PRISM GCHQ Snowden"
Encrypt your e-mail with PGP and random profanity
21–30 of 68 posts
Re: Encrypt your e-mail with PGP and random profanity
#22As 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.
Mapping each base64 char to one word seems rather inefficient. If you have a longer list of N swears (say 256 because it's the size of a byte, making encoding easier), you could produce a more efficient base-N encoding, e.g.: var bytes = atob(base64msg), swearsMsg = ''; for (var i = 0; i Of course, it's still less efficient than base64, but it's an improvement. :)
I suppose you can't get much better than that unless you can come up with hundreds or thousands more swears.
Re: Encrypt your e-mail with PGP and random profanity
#23A 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-...
You could also use a paid provider that doesn't show ads
Its always been a puzzle to me why so many people just don't own their own mailserver, just like you "own" your mail box at your property.
You can use spamassasin which is as good as they come. Problem solved.
Re: Encrypt your e-mail with PGP and random profanity
#24Earlier quoted context omitted.
Mapping each base64 char to one word seems rather inefficient. If you have a longer list of N swears (say 256 because it's the size of a byte, making encoding easier), you could produce a more efficient base-N encoding, e.g.: var bytes = atob(base64msg), swearsMsg = ''; for (var i = 0; i Of course, it's still less efficient than base64, but it's an improvement. :)
Yep, that would be a little better. I suppose you can't get much better than that unless you can come up with hundreds or thousands more swears.
But yeah, I'm not sure there are that many recognisable swear words in English. Unless you count massive compounds, but now all your words are really long, so you haven't gained anything.
Re: Encrypt your e-mail with PGP and random profanity
#25Earlier quoted context omitted.
You could also use a paid provider that doesn't show ads
Alternatively setup your own free mailserver. Its always been a puzzle to me why so many people just don't own their own mailserver, just like you "own" your mail box at your property. You can use spamassasin which is as good as they come. Problem solved.
Re: Encrypt your e-mail with PGP and random profanity
#26You would be unable to tell an encrypted message from normal discourse with a sailor.
Re: Encrypt your e-mail with PGP and random profanity
#27Earlier quoted context omitted.
You could also use a paid provider that doesn't show ads
Alternatively setup your own free mailserver. Its always been a puzzle to me why so many people just don't own their own mailserver, just like you "own" your mail box at your property. You can use spamassasin which is as good as they come. Problem solved.
Re: Encrypt your e-mail with PGP and random profanity
#28Earlier quoted context omitted.
Alternatively setup your own free mailserver. Its always been a puzzle to me why so many people just don't own their own mailserver, just like you "own" your mail box at your property. You can use spamassasin which is as good as they come. Problem solved.
Maybe this has changed recently, but last time I checked there was no self-hosted email client that even came close to the great UI that Gmail offers.
Re: Encrypt your e-mail with PGP and random profanity
#29Despite 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.
It would be reasonably straightforward to generate encoded messages that are about as coherent as spambots plucking a series of random phrases from the web. I don't know how you'd generate anything plausibly human, though, unless you're doing obvious steganography with whitespace or capitalization.
But this'd mean you'd need to share the dictionary somehow, and you might accidentally expose sensitive information in the Markov chains.
Re: Encrypt your e-mail with PGP and random profanity
#30Earlier quoted context omitted.
You could also use a paid provider that doesn't show ads
Alternatively setup your own free mailserver. Its always been a puzzle to me why so many people just don't own their own mailserver, just like you "own" your mail box at your property. You can use spamassasin which is as good as they come. Problem solved.