CryptUtil
/**
* 、 cipher
* javax.crypto.*、java.security.*、org.apache.commons.codec.binary.Base64
* 、 。 , API , 、
* ; 、 JDK ;
*
* @author chenxin
* @version [ , 2012-5-21]
* @see [ / ]
* @since [ / ]
*/
public class CryptUtil {
/**
*
*/
private static final CryptUtil instance = new CryptUtil();
/**
* Base64
*/
private static final BASE64Decoder base64De = new BASE64Decoder();
/**
* Base64
*/
private static final BASE64Encoder base64En = new BASE64Encoder();
/**
*
* @author ahli
* @version IMPV100R001DA0, Nov 18, 2009
* @since CMS IMPV100R001DA0
*/
public enum CipherType{
AES,
DES
}
/**
* ,
*/
private CryptUtil()
{
};
/**
*
* @return
*/
public static CryptUtil getInstance()
{
return instance;
}
/**
*
* :“xjPk2rOSU1n5v70a84M+vw==”
* @return
*/
public String genRandomKeyStr(CipherType type)
{
SecretKey key;
try
{
key = KeyGenerator.getInstance(type.toString()).generateKey();
return base64En.encode(key.getEncoded());
}
catch (NoSuchAlgorithmException e)
{
return null;
}
}
/**
*
* @param str
* @param key
* @param type
* @return
*/
public String encrypt(String str, String key, CipherType type)
{
try
{
Cipher cipher = Cipher.getInstance(type.toString());
cipher.init(Cipher.ENCRYPT_MODE, initKey(type.toString(), key));
return new String(Base64.encodeBase64(cipher.doFinal(str.getBytes("UTF-8"))));
}
catch (IOException e)
{
e.printStackTrace();
}
catch (GeneralSecurityException e)
{
e.printStackTrace();
}
return null;
}
/**
*
* @param str
* @param key
* @param type
* @return
*/
public String decrypt(String str, String key, CipherType type)
{
try
{
Cipher cipher = Cipher.getInstance(type.toString());
cipher.init(Cipher.DECRYPT_MODE, initKey(type.toString(), key));
return new String(cipher.doFinal( base64De.decodeBuffer(str)), "UTF-8");
}
catch (IOException e)
{
e.printStackTrace();
}
catch (GeneralSecurityException e)
{
e.printStackTrace();
}
return null;
}
/**
*
* @param cryptType
* @param key
* @return
* @throws UnsupportedEncodingException
*/
private Key initKey(String cryptType, String key) throws UnsupportedEncodingException{
SecretKey secretKey = new SecretKeySpec(Base64.decodeBase64(key.getBytes("UTF-8")), cryptType);
return secretKey;
}
public static void main(String[] args)
{
// String randomKey = CryptUtil.getInstance().genRandomKeyStr(CipherType.AES);
String randomKey = "C1ZZsBNd0JY/8Yx2nPEg2g==";
System.out.println("randomKey:" + randomKey);
String message = "cms4a";
System.out.println(" :" + message);
String s1 = CryptUtil.getInstance().encrypt(message, randomKey, CipherType.AES);
System.out.println(" :" + s1);
String s2 = CryptUtil.getInstance().decrypt(s1, randomKey, CipherType.AES);
System.out.println(" :" + s2);
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Linux 의 가상 시디롬 과 가상 플 로 피만약 당신 이 방금 윈도 에서 리 눅 스 로 옮 겼 다 면, 윈도 아래 에 가상 드라이브 가 있 고, 리 눅 스 아래 에 있 는 지 물 어 봐 야 할 것 입 니 다.일반적으로 윈도 가 할 수 있 는 일 은 리 눅 스...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.