Last active
February 29, 2020 03:58
-
-
Save alvin4frnds/3320058aeb714b606cf7f052ad5a1b9d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.medimetry.appmedi.utility; | |
import android.util.Base64; | |
import java.security.MessageDigest; | |
import java.security.spec.AlgorithmParameterSpec; | |
import javax.crypto.Cipher; | |
import javax.crypto.spec.IvParameterSpec; | |
import javax.crypto.spec.SecretKeySpec; | |
/** | |
* @author vipin.cb , [email protected] <br> | |
* Sep 27, 2013, 5:18:34 PM <br> | |
* Package:- <b>com.veebow.util</b> <br> | |
* Project:- <b>Veebow</b> | |
* <p> | |
*/ | |
public class AESHelper { | |
private final Cipher cipher; | |
private final SecretKeySpec key; | |
private AlgorithmParameterSpec spec; | |
public static final String SEED_16_CHARACTER = "oshi12wq!@WQ"; | |
public AESHelper() throws Exception { | |
// hash password with SHA-256 and crop the output to 128-bit for key | |
MessageDigest digest = MessageDigest.getInstance("SHA-256"); | |
digest.update(SEED_16_CHARACTER.getBytes("UTF-8")); | |
byte[] keyBytes = new byte[32]; | |
System.arraycopy(digest.digest(), 0, keyBytes, 0, keyBytes.length); | |
cipher = Cipher.getInstance("AES/CBC/PKCS7Padding"); | |
key = new SecretKeySpec(keyBytes, "AES"); | |
spec = getIV(); | |
} | |
public AlgorithmParameterSpec getIV() { | |
byte[] iv = { 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30}; | |
IvParameterSpec ivParameterSpec; | |
ivParameterSpec = new IvParameterSpec(iv); | |
return ivParameterSpec; | |
} | |
public String encrypt(String plainText) throws Exception { | |
cipher.init(Cipher.ENCRYPT_MODE, key, spec); | |
byte[] encrypted = cipher.doFinal(plainText.getBytes("UTF-8")); | |
String encryptedText = new String(Base64.encode(encrypted, | |
Base64.DEFAULT), "UTF-8"); | |
return encryptedText; | |
} | |
public String decrypt(String cryptedText) throws Exception { | |
cipher.init(Cipher.DECRYPT_MODE, key, spec); | |
byte[] bytes = Base64.decode(cryptedText, Base64.DEFAULT); | |
byte[] decrypted = cipher.doFinal(bytes); | |
String decryptedText = new String(decrypted, "UTF-8"); | |
return decryptedText; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment