java 구현된 AES 암호화 알고리즘 전체 실례

본고는 자바가 실현한 AES 암호화 알고리즘을 실례로 다루고 있다.다음과 같이 여러분에게 참고할 수 있도록 공유합니다.

import javax.crypto.Cipher;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;
import android.util.Base64;
/**
 * @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 AESCrypt {
  private final Cipher cipher;
  private final SecretKeySpec key;
  private AlgorithmParameterSpec spec;
  public static final String SEED_16_CHARACTER = "U1MjU1M0FDOUZ.Qz";
  public AESCrypt() 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 = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, };
    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;
  }
}

PS: 암호화 복호화에 관심이 있는 친구는 본 사이트의 온라인 도구를 참고할 수 있습니다.
암호 보안 온라인 검사:
http://tools.jb51.net/password/my_password_safe
고강도 암호 생성기:
http://tools.jb51.net/password/CreateStrongPassword
MD5 온라인 암호화 도구:
http://tools.jb51.net/password/CreateMD5Password
Central, Express, 회오리 URL 암호화/복호화 도구:
http://tools.jb51.net/password/urlrethunder
온라인 해시/해시 알고리즘 암호화 도구:
http://tools.jb51.net/password/hash_encrypt
본고에서 기술한 것이 여러분의 자바 프로그램 설계에 도움이 되기를 바랍니다.

좋은 웹페이지 즐겨찾기