자신 이 쓴 암호 화 복호화 클래스
1913 단어 sun
import java.io.IOException;
import sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;
public class Test {
/**
*
*
* @param src
* @return
*/
public String encode(String src, String key) {
if (src == null || src.equals(""))
return "";
byte[] b = src.getBytes(), k = key.getBytes();
int len = b.length, klen = k.length;
for (int i = 0; i < len; i++) {
int index = i % klen;
b[i] = (byte) (b[i] ^ k[index]);
}
return new BASE64Encoder().encode(b);
}
/**
*
*
* @param src
* @return
*/
public String decode(String src, String key) {
if (src == null || src.equals(""))
return "";
String ret;
try {
ret = new String(new BASE64Decoder().decodeBuffer(src));
byte[] b = ret.getBytes(), k = key.getBytes();
int len = b.length, klen = k.length;
for (int i = 0; i < len; i++) {
int index = i % klen;
b[i] = (byte) (b[i] ^ k[index]);
}
return new String(b);
} catch (IOException e) {
return "";
}
}
/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException {
// TODO Auto-generated method stub
// ,
String key = "1234567";
Test t = new Test();
String tmp = " ";
String tmp2 = t.encode(tmp, key);
System.out.println(" :"+tmp2);
System.out.println(" :"+t.decode(tmp2, key));
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
JavaMail은 SSL을 통해 이메일을 전송합니다.텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.