摘要:
其中MD5、SHA-1为数字签名。BASE64, 3DES为可逆加密方法。import java.security.MessageDigest;import javax.crypto.Cipher;import javax.crypto.SecretKey;import javax.crypto.spec.SecretKeySpec;import sun.misc.BASE64Decoder;import sun.misc.BASE64Encoder;/*** Java 加解密工具类* * @author mosesxin@gmail.com**/public class EncryptUti 阅读全文