On Thu, Dec 18, 2008 at 11:30 AM, sthustfo <[email protected]> wrote: > Does the current android SDK provide support for > > 1. AES-128 encryption > 2. MD5 hash computation
Yes on both counts. AES is available for use via the class javax.crypto.Cipher (along with helpers CipherInputStream and CipherOutputStream), and MD5 is available for use via the class javax.crypto.Mac. See docs for those classes for more details, and I'm sure a web search will turn up plenty of example uses. -dan --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

