Skip to content

Instantly share code, notes, and snippets.

View mkamals's full-sized avatar
💭
Work Hard In Silence Let Success Make All The Noise

Kamal S mkamals

💭
Work Hard In Silence Let Success Make All The Noise
  • Happy Fox
  • Chennai
View GitHub Profile
@aogilvie
aogilvie / string_encrypt_decrypt.md
Created August 19, 2013 08:52
Quick and sexy String encrypt / decrypt for Android

#Quick and sexy String encrypt / decrypt for Android

Sometimes you find yourself wanted to use SharedPrefs to hold something precious? Want to prevent those pesky rooted hackz0rs from looking in your SharedPreds? Here is a quick and sexy no-external-libs-required solution.

Notes;

  • I have declared everything static so you can create your own utility class and throw the following straight in.

  • 3rd party imports are not required. Use import android.util.Base64; for Base64, and import javax.crypto.*; for Cipher.