See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| /** | |
| * Created by Awesometic | |
| * It's encrypt returns Base64 encoded, and also decrypt for Base64 encoded cipher | |
| * references: http://stackoverflow.com/questions/12471999/rsa-encryption-decryption-in-android | |
| */ | |
| import android.util.Base64; | |
| import java.nio.charset.StandardCharsets; | |
| import java.security.InvalidKeyException; | |
| import java.security.KeyFactory; |