DESEncoder
+ encrypted(String str):String+ decrypted(String cipher):String
Cipher cipher = (Cipher)XMLUtil.getBean();cipher.encipher(\"加密字符串\");cipher.decipher(\"解密字符串\");
RSACipherAdapter
+ encipher(String str):String+ decipher(String buf):String
Cipher
DESCipherAdapter
implements
extends
return super.encrypted(str);return super.decrypted(buf);
RSAEncoder
Test
+ main(String[] args):void