Table of Contents

RSS Feed Encryption

I'm providing source code to encrypt your RSS feed (or any other content created on your server) and decrypt it in your browser. This is to enable you to put sensitive data into your feed without making it public.

Download Source Code

feedencryption.zip (4 KB)

Requirements

Installation and Usage

Server Encryption

  1. Upload encryption.php to your server
  2. Create your PHP script which will output your RSS feed
  3. Add include(“encryption.php”) to your feed creation script
  4. Encrypt any sensitive data with enrypt($text,$key) where $key is your encryption key (some string). Remember this key.

Browser Decryption

Note: This currently only works with Firefox and Google Reader. If you can support more feed readers by modifying decrypt.user.js, please send me a message.

  1. Edit decrypt.user.js, set encryptionKey to your password (must be the same as the one on the server)
  2. Drag decrypt.user.js into Firefox and install with Greasemonkey
  3. Open Google Reader, subscribe to your feed

Notes