Google App Engine Project

Use the following modules to access the datastore by inserting encrypted messages and retrieving them based on text and anagrams

Insert an encrypted message into the datastore (/encrypt)

The following module saves your messages on the Google App Engine Datastore. Insert your personal message and an personal encryption key.

The data that will be sent

{message:"", encryption_key:""}

HTTP Response

-

Search your messages (/decrypt)

Search your messages based on text and using the encryption key that was used to store them.

The data that will be sent

{search:"", decryption_key:""}

HTTP Response

-

Find anagrams of your messages (/findanagram)

Search an anagram of some of your messages combined with the encryption key that was used to store it. e.g.: if test was stored try to find it using estt

The data that will be sent

{find:"", decryption_key:""}

HTTP Response

-