Hi timo,

Have you considered making requests to your app over HTTPS? You can
configure specific URLs to require that requests be made over a secure
socket layer channel (SSL).

Python:
http://code.google.com/appengine/docs/python/config/appconfig.html#Secure_URLs
Java:
http://code.google.com/appengine/docs/java/config/appconfig.html#Enabling_Secure_URLs__SSL_

There are also crypto libraries available on the server, but it sounds like
HTTPS will provide what you are looking for without you having to write any
crypto code.

Happy coding,

Jeff

On Tue, Jun 16, 2009 at 10:37 PM, timo <timo.chartow...@googlemail.com>wrote:

>
> I want to send encrypted data to my appengine and never did anything
> similar. Also I am more of a programming beginner.
>
> The encryption should take place from a Java client. This data I send
> to the appengine where it should be decrypted and then used to answer
> the request. It can be a very 'light' encryption, so rather quick then
> hard to break.
>
> Can somebody perhaps provide me with two code snippets to do such a
> task on the Java and Python side?
>
> Thank you very much :)
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to