`
gavin2232
  • 浏览: 10442 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
文章分类
社区版块
存档分类
最新评论

Java加密处理

阅读更多
Message Digest Algorithm MD5(中文名为消息摘要算法第五版)为计算机安全领域广泛使用的一种散列函数,用以提供消息的完整性保护。该算法的文件号为RFC 1321(R.Rivest,MIT Laboratory for Computer Science and RSA Data Security Inc. April 1992)
public final class MD5Crypt {

/**
*
* Command line test rig.
 * @throws NoSuchAlgorithmException 
*
*/

static public void main(String argv[]) throws NoSuchAlgorithmException
{
	System.out.println(crypt("daliantan0v0"));;
// if ((argv.length < 1) || (argv.length > 2))
//   {
//	System.err.println("Usage: MD5Crypt password salt");
//	System.exit(1);
//   }
//
// if (argv.length == 2)
//   {
//	System.err.println(MD5Crypt.crypt(argv[0], argv[1]));
//   }
// else
//   {
//	System.err.println(MD5Crypt.crypt(argv[0]));
//   }
// 
// System.exit(0);
}

static private final String SALTCHARS = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";

static private final String itoa64 = "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";

static private final String to64(long v, int size)
{
 StringBuffer result = new StringBuffer();

 while (--size >= 0)
   {
	result.append(itoa64.charAt((int) (v & 0x3f)));
	v >>>= 6;
   }

 return result.toString();
}

static private final void clearbits(byte bits[])
{
 for (int i = 0; i < bits.length; i++)
   {
	bits[i] = 0;
   }
}



/**
* convert an encoded unsigned byte value into a int
* with the unsigned value.
*/

static private final int bytes2u(byte inp)
{
 return (int) inp & 0xff;
}

/**
* <p>This method actually generates a OpenBSD/FreeBSD/Linux PAM compatible
* md5-encoded password hash from a plaintext password and a
* salt.</p>
*
* <p>The resulting string will be in the form '$1$&lt;salt&gt;$&lt;hashed mess&gt;</p>
*
* @param password Plaintext password
*
* @return An OpenBSD/FreeBSD/Linux-compatible md5-hashed password field.
 * @throws NoSuchAlgorithmException 
*/

static public final String crypt(String password) throws NoSuchAlgorithmException
{
 StringBuffer salt = new StringBuffer();
 java.util.Random randgen = new java.util.Random();

 /* -- */

  while (salt.length() < 8)
    {
	 int index = (int) (randgen.nextFloat() * SALTCHARS.length());
      salt.append(SALTCHARS.substring(index, index+1));
    }

  return MD5Crypt.crypt(password, salt.toString());
}

/**
* <p>This method actually generates a OpenBSD/FreeBSD/Linux PAM compatible
* md5-encoded password hash from a plaintext password and a
* salt.</p>
*
* <p>The resulting string will be in the form '$1$&lt;salt&gt;$&lt;hashed mess&gt;</p>
*
* @param password Plaintext password
* @param salt A short string to use to randomize md5.  May start with $1$, which
*             will be ignored.  It is explicitly permitted to pass a pre-existing
*             MD5Crypt'ed password entry as the salt.  crypt() will strip the salt
*             chars out properly.
*
* @return An OpenBSD/FreeBSD/Linux-compatible md5-hashed password field.
 * @throws NoSuchAlgorithmException 
*/

static public final String crypt(String password, String salt) throws NoSuchAlgorithmException
{
 /* This string is magic for this algorithm.  Having it this way,
  * we can get get better later on */

 String magic = "$1$";
 byte finalState[];
 MessageDigest ctx, ctx1;
 long l;

 /* -- */

 /* Refine the Salt first */

 /* If it starts with the magic string, then skip that */
 
 if (salt.startsWith(magic))
   {
	salt = salt.substring(magic.length());
   }

 /* It stops at the first '$', max 8 chars */

 if (salt.indexOf('$') != -1)
   {
	salt = salt.substring(0, salt.indexOf('$'));
   }

 if (salt.length() > 8)
   {
	salt = salt.substring(0, 8);
   }

 ctx = MessageDigest.getInstance("MD5");

 ctx.update(password.getBytes());    // The password first, since that is what is most unknown
 ctx.update(magic.getBytes());    // Then our magic string
 ctx.update(salt.getBytes());    // Then the raw salt

 /* Then just as many characters of the MD5(pw,salt,pw) */

 ctx1 = MessageDigest.getInstance("MD5");
 ctx1.update(password.getBytes());
 ctx1.update(salt.getBytes());
 ctx1.update(password.getBytes());
 finalState = ctx1.digest();

 for (int pl = password.length(); pl > 0; pl -= 16)
   {
	for( int i=0; i< (pl > 16 ? 16 : pl); i++ )
	  ctx.update(finalState[i] );
   }

 /* the original code claimed that finalState was being cleared
    to keep dangerous bits out of memory, but doing this is also
    required in order to get the right output. */

 clearbits(finalState);
 
 /* Then something really weird... */

 for (int i = password.length(); i != 0; i >>>=1)
   {
	if ((i & 1) != 0)
	  {
	    ctx.update(finalState[0]);
	  }
	else
	  {
	    ctx.update(password.getBytes()[0]);
	  }
   }

 finalState = ctx.digest();

 /*
  * and now, just to make sure things don't run too fast
  * On a 60 Mhz Pentium this takes 34 msec, so you would
  * need 30 seconds to build a 1000 entry dictionary...
  *
  * (The above timings from the C version)
  */

 for (int i = 0; i < 1000; i++)
   {
	ctx1 = MessageDigest.getInstance("MD5");

	if ((i & 1) != 0)
	  {
	    ctx1.update(password.getBytes());
	  }
	else
	  {
	    for( int c=0; c<16; c++ )
	      ctx1.update(finalState[c]);
	  }

	if ((i % 3) != 0)
	  {
	    ctx1.update(salt.getBytes());
	  }

	if ((i % 7) != 0)
	  {
	    ctx1.update(password.getBytes());
	  }

	if ((i & 1) != 0)
	  {
	    for( int c=0; c<16; c++ )
	      ctx1.update(finalState[c]);
	  }
	else
	  {
	    ctx1.update(password.getBytes());
	  }

	finalState = ctx1.digest();
   }

 /* Now make the output string */

 StringBuffer result = new StringBuffer();

 result.append(magic);
 result.append(salt);
 result.append("$");

 l = (bytes2u(finalState[0]) << 16) | (bytes2u(finalState[6]) << 8) | bytes2u(finalState[12]);
 result.append(to64(l, 4));

 l = (bytes2u(finalState[1]) << 16) | (bytes2u(finalState[7]) << 8) | bytes2u(finalState[13]);
 result.append(to64(l, 4));

 l = (bytes2u(finalState[2]) << 16) | (bytes2u(finalState[8]) << 8) | bytes2u(finalState[14]);
 result.append(to64(l, 4));

 l = (bytes2u(finalState[3]) << 16) | (bytes2u(finalState[9]) << 8) | bytes2u(finalState[15]);
 result.append(to64(l, 4));

 l = (bytes2u(finalState[4]) << 16) | (bytes2u(finalState[10]) << 8) | bytes2u(finalState[5]);
 result.append(to64(l, 4));

 l = bytes2u(finalState[11]);
 result.append(to64(l, 2));

 /* Don't leave anything around in vm they could use. */
 clearbits(finalState);

 return result.toString();
}
}

DES加密与解密:
/**  
 *   
 * 使用DES加密与解密,可对byte[],String类型进行加密与解密 密文可使用String,byte[]存储.  
 *   
 * 方法: void getKey(String strKey)从strKey的字条生成一个Key  
 *   
 * String getEncString(String strMing)对strMing进行加密,返回String密文 String  
 * getDesString(String strMi)对strMin进行解密,返回String明文  
 *   
 * byte[] getEncCode(byte[] byteS)byte[]型的加密 byte[] getDesCode(byte[]  
 * byteD)byte[]型的解密  
 */  
  
public class ThreeDES {   
    Key key;   
  
    /**  
     * 根据参数生成KEY  
     *   
     * @param strKey  
     */  
    public void getKey(String strKey) {   
        try {   
            KeyGenerator _generator = KeyGenerator.getInstance("DES");   
            _generator.init(new SecureRandom(strKey.getBytes()));   
            this.key = _generator.generateKey(); 
            _generator = null;   
        } catch (Exception e) {   
            e.printStackTrace();   
        }   
    }   
  
    /**  
     * 加密String明文输入,String密文输出  
     *   
     * @param strMing  
     * @return  
     */  
    public String getEncString(String strMing) {   
        byte[] byteMi = null;   
        byte[] byteMing = null;   
        String strMi = "";   
        BASE64Encoder base64en = new BASE64Encoder();   
        try {   
            byteMing = strMing.getBytes("UTF8");   
            byteMi = this.getEncCode(byteMing);   
            strMi = base64en.encode(byteMi);   
        } catch (Exception e) {   
            e.printStackTrace();   
        } finally {   
            base64en = null;   
            byteMing = null;   
            byteMi = null;   
        }   
        return strMi;   
    }   
  
    /**  
     * 解密 以String密文输入,String明文输出  
     *   
     * @param strMi  
     * @return  
     */  
    public String getDesString(String strMi) {   
        BASE64Decoder base64De = new BASE64Decoder();   
        byte[] byteMing = null;   
        byte[] byteMi = null;   
        String strMing = "";   
        try {   
            byteMi = base64De.decodeBuffer(strMi);   
            byteMing = this.getDesCode(byteMi);   
            strMing = new String(byteMing, "UTF8");   
        } catch (Exception e) {   
            e.printStackTrace();   
        } finally {   
            base64De = null;   
            byteMing = null;   
            byteMi = null;   
        }   
        return strMing;   
    }   
  
    /**  
     * 加密以byte[]明文输入,byte[]密文输出  
     *   
     * @param byteS  
     * @return  
     */  
    private byte[] getEncCode(byte[] byteS) {   
        byte[] byteFina = null;   
        Cipher cipher;   
        try {   
            cipher = Cipher.getInstance("DES");   
            cipher.init(Cipher.ENCRYPT_MODE, key);   
            byteFina = cipher.doFinal(byteS);   
        } catch (Exception e) {   
            e.printStackTrace();   
        } finally {   
            cipher = null;   
        }   
        return byteFina;   
    }   
  
    /**  
     * 解密以byte[]密文输入,以byte[]明文输出  
     *   
     * @param byteD  
     * @return  
     */  
    private byte[] getDesCode(byte[] byteD) {   
        Cipher cipher;   
        byte[] byteFina = null;   
        try {   
            cipher = Cipher.getInstance("DES");   
            cipher.init(Cipher.DECRYPT_MODE, key);   
            byteFina = cipher.doFinal(byteD);   
        } catch (Exception e) {   
            e.printStackTrace();   
        } finally {   
            cipher = null;   
        }   
        return byteFina;   
  
    }   
  
    public static void main(String[] args) {   
        ThreeDES des = new ThreeDES();// 实例化一个对像   
        des.getKey("daliantan0v0");// 生成密匙   
        
        String strEnc = des.getEncString("ss = 00-13-77-5A-B2-F4=2010-10-10");// 加密字符串,返回String的密文   
        System.out.println(strEnc);   
  
        String strDes = des.getDesString("d6LhO6+II12wjY+JzushFtC4II8wVDOI");// 把String 类型的密文解密    
        System.out.println(strDes);   
    }   
  
}  

安全散列算法SHA
  (Secure Hash Algorithm,SHA)
  是美国国家标准和技术局发布的国家标准FIPS PUB 180-1,一般称为SHA-1。其对长度不超过264二进制位的消息产生160位的消息摘要输出,按512比特块处理其输入。
  SHA是一种数据加密算法,该算法经过加密专家多年来的发展和改进已日益完善,现在已成为公认的最安全的散列算法之一,并被广泛使用。该算法的思想是接收一段明文,然后以一种不可逆的方式将它转换成一段(通常更小)密文,也可以简单的理解为取一串输入码(称为预映射或信息),并把它们转化为长度较短、位数固定的输出序列即散列值(也称为信息摘要或信息认证代码)的过程。散列函数值可以说时对明文的一种“指纹”或是“摘要”所以对散列值的数字签名就可以视为对此明文的数字签名。

/**  
 * 加密解密  
 *   
 * @author shy.qiu  
 * @since  http://blog.csdn.net/qiushyfm  
 */  
public class Crypt {   
       /**  
     * 进行SHA加密  
     *   
     * @param info  
     *            要加密的信息  
     * @return String 加密后的字符串  
     */  
    public String encryptToSHA(String info) {   
        byte[] digesta = null;   
        try {   
            // 得到一个SHA-1的消息摘要   
            MessageDigest alga = MessageDigest.getInstance("SHA-1");   
            // 添加要进行计算摘要的信息   
            alga.update(info.getBytes());   
            // 得到该摘要   
            digesta = alga.digest();   
        } catch (NoSuchAlgorithmException e) {   
            e.printStackTrace();   
        }   
        // 将摘要转为字符串   
        String rs = byte2hex(digesta);   
        return rs;   
    }   
    // //////////////////////////////////////////////////////////////////////////   
    /**  
     * 创建密匙  
     *   
     * @param algorithm  
     *            加密算法,可用 DES,DESede,Blowfish  
     * @return SecretKey 秘密(对称)密钥  
     */  
    public SecretKey createSecretKey(String algorithm) {   
        // 声明KeyGenerator对象   
        KeyGenerator keygen;   
        // 声明 密钥对象   
        SecretKey deskey = null;   
        try {   
            // 返回生成指定算法的秘密密钥的 KeyGenerator 对象   
            keygen = KeyGenerator.getInstance(algorithm);   
            // 生成一个密钥   
            deskey = keygen.generateKey();   
        } catch (NoSuchAlgorithmException e) {   
            e.printStackTrace();   
        }   
        // 返回密匙   
        return deskey;   
    }   
    /**  
     * 根据密匙进行DES加密  
     *   
     * @param key  
     *            密匙  
     * @param info  
     *            要加密的信息  
     * @return String 加密后的信息  
     */  
    public String encryptToDES(SecretKey key, String info) {   
        // 定义 加密算法,可用 DES,DESede,Blowfish   
        String Algorithm = "DES";   
        // 加密随机数生成器 (RNG),(可以不写)   
        SecureRandom sr = new SecureRandom();   
        // 定义要生成的密文   
        byte[] cipherByte = null;   
        try {   
            // 得到加密/解密器   
            Cipher c1 = Cipher.getInstance(Algorithm);   
            // 用指定的密钥和模式初始化Cipher对象   
            // 参数:(ENCRYPT_MODE, DECRYPT_MODE, WRAP_MODE,UNWRAP_MODE)   
            c1.init(Cipher.ENCRYPT_MODE, key, sr);   
            // 对要加密的内容进行编码处理,   
            cipherByte = c1.doFinal(info.getBytes());   
        } catch (Exception e) {   
            e.printStackTrace();   
        }   
        // 返回密文的十六进制形式   
        return byte2hex(cipherByte);   
    }   
    /**  
     * 根据密匙进行DES解密  
     *   
     * @param key  
     *            密匙  
     * @param sInfo  
     *            要解密的密文  
     * @return String 返回解密后信息  
     */  
    public String decryptByDES(SecretKey key, String sInfo) {   
        // 定义 加密算法,   
        String Algorithm = "DES";   
        // 加密随机数生成器 (RNG)   
        SecureRandom sr = new SecureRandom();   
        byte[] cipherByte = null;   
        try {   
            // 得到加密/解密器   
            Cipher c1 = Cipher.getInstance(Algorithm);   
            // 用指定的密钥和模式初始化Cipher对象   
            c1.init(Cipher.DECRYPT_MODE, key, sr);   
            // 对要解密的内容进行编码处理   
            cipherByte = c1.doFinal(hex2byte(sInfo));   
        } catch (Exception e) {   
            e.printStackTrace();   
        }   
        // return byte2hex(cipherByte);   
        return new String(cipherByte);   
    }   
    // /////////////////////////////////////////////////////////////////////////////   
    /**  
     * 创建密匙组,并将公匙,私匙放入到指定文件中  
     *   
     * 默认放入mykeys.bat文件中  
     * @throws IOException 
     */  
    public void createPairKey() throws IOException {   
        try {   
            // 根据特定的算法一个密钥对生成器   
            KeyPairGenerator keygen = KeyPairGenerator.getInstance("DSA");   
            // 加密随机数生成器 (RNG)   
            SecureRandom random = new SecureRandom();   
            // 重新设置此随机对象的种子   
            random.setSeed(1000);   
            // 使用给定的随机源(和默认的参数集合)初始化确定密钥大小的密钥对生成器   
            keygen.initialize(512, random);// keygen.initialize(512);   
            // 生成密钥组   
            KeyPair keys = keygen.generateKeyPair();   
            // 得到公匙   
            PublicKey pubkey = keys.getPublic();   
            // 得到私匙   
            PrivateKey prikey = keys.getPrivate(); 
            //取得公司名称,写入公钥中
            GetProperties gp = new GetProperties();
            String company = gp.getCompany();
            // 将公匙私匙写入到文件当中   
            doObjToFile("mykeys.bat", new Object[] { prikey, pubkey ,company});   
        } catch (NoSuchAlgorithmException e) {   
            e.printStackTrace();   
        }   
    }   
    /**  
     * 利用私匙对信息进行签名 把签名后的信息放入到指定的文件中  
     *   
     * @param info  
     *            要签名的信息  
     * @param signfile  
     *            存入的文件  
     */  
    public void signToInfo(String info, String signfile) {   
        // 从文件当中读取私匙   
        PrivateKey myprikey = (PrivateKey) getObjFromFile("mykeys.bat", 1);   
        // 从文件中读取公匙   
        PublicKey mypubkey = (PublicKey) getObjFromFile("mykeys.bat", 2); 
        String in = (String) getObjFromFile("mykeys.bat", 3);
        System.out.println("****"+in);
        try {   
            // Signature 对象可用来生成和验证数字签名   
            Signature signet = Signature.getInstance("DSA");   
            // 初始化签署签名的私钥   
            signet.initSign(myprikey);   
            // 更新要由字节签名或验证的数据   
            signet.update(info.getBytes());   
            // 签署或验证所有更新字节的签名,返回签名   
            byte[] signed = signet.sign();   
            // 将数字签名,公匙,信息放入文件中   
            doObjToFile("d:\\"+signfile, new Object[] { signed, mypubkey, info ,in});   
        } catch (Exception e) {   
            e.printStackTrace();   
        }   
    }   
    /**  
     * 读取数字签名文件 根据公匙,签名,信息验证信息的合法性  
     *   
     * @return true 验证成功 false 验证失败  
     */  
    public boolean validateSign(String signfile) {   
        // 读取公匙   
        PublicKey mypubkey = (PublicKey) getObjFromFile(signfile, 2); 
        System.out.println("mypubkey==="+mypubkey);
        // 读取签名   
        byte[] signed = (byte[]) getObjFromFile(signfile, 1);   
        // 读取信息   
        String info = (String) getObjFromFile(signfile, 3); 
        System.out.println("info==="+info);
        try {   
            // 初始一个Signature对象,并用公钥和签名进行验证   
            Signature signetcheck = Signature.getInstance("DSA");   
            // 初始化验证签名的公钥   
            signetcheck.initVerify(mypubkey);   
            // 使用指定的 byte 数组更新要签名或验证的数据   
            signetcheck.update(info.getBytes());     
            // 验证传入的签名   
            return signetcheck.verify(signed);   
        } catch (Exception e) {   
            e.printStackTrace();   
            return false;   
        }   
    }   
    /**  
     * 将二进制转化为16进制字符串  
     *   
     * @param b  
     *            二进制字节数组  
     * @return String  
     */  
    public String byte2hex(byte[] b) {   
        String hs = "";   
        String stmp = "";   
        for (int n = 0; n < b.length; n++) {   
            stmp = (java.lang.Integer.toHexString(b[n] & 0XFF));   
            if (stmp.length() == 1) {   
                hs = hs + "0" + stmp;   
            } else {   
                hs = hs + stmp;   
            }   
        }   
        return hs.toUpperCase();   
    }   
    /**  
     * 十六进制字符串转化为2进制  
     *   
     * @param hex  
     * @return  
     */  
    public byte[] hex2byte(String hex) {   
        byte[] ret = new byte[8];   
        byte[] tmp = hex.getBytes();   
        for (int i = 0; i < 8; i++) {   
            ret[i] = uniteBytes(tmp[i * 2], tmp[i * 2 + 1]);   
        }   
        return ret;   
    }   
    /**  
     * 将两个ASCII字符合成一个字节; 如:"EF"--> 0xEF  
     *   
     * @param src0  
     *            byte  
     * @param src1  
     *            byte  
     * @return byte  
     */  
    public static byte uniteBytes(byte src0, byte src1) {   
        byte _b0 = Byte.decode("0x" + new String(new byte[] { src0 }))   
                .byteValue();   
        _b0 = (byte) (_b0 << 4);   
        byte _b1 = Byte.decode("0x" + new String(new byte[] { src1 }))   
                .byteValue();   
        byte ret = (byte) (_b0 ^ _b1);   
        return ret;   
    }   
    /**  
     * 将指定的对象写入指定的文件  
     *   
     * @param file  
     *            指定写入的文件  
     * @param objs  
     *            要写入的对象  
     */  
    public void doObjToFile(String file, Object[] objs) {   
        ObjectOutputStream oos = null;   
        try {   
            FileOutputStream fos = new FileOutputStream(file);   
            oos = new ObjectOutputStream(fos);   
            for (int i = 0; i < objs.length; i++) {   
                oos.writeObject(objs[i]);   
            }   
        } catch (Exception e) {   
            e.printStackTrace();   
        } finally {   
            try {   
                oos.close();   
            } catch (IOException e) {   
                e.printStackTrace();   
            }   
        }   
    }   
    /**  
     * 返回在文件中指定位置的对象  
     *   
     * @param file  
     *            指定的文件  
     * @param i  
     *            从1开始  
     * @return  
     */  
    public Object getObjFromFile(String file, int i) {   
        ObjectInputStream ois = null;   
        Object obj = null;   
        try {   
            FileInputStream fis = new FileInputStream(file);   
            ois = new ObjectInputStream(fis);   
            for (int j = 0; j < i; j++) {   
                obj = ois.readObject();   
            }   
        } catch (Exception e) {   
            e.printStackTrace();   
        } finally {   
            try {   
                ois.close();   
            } catch (IOException e) {   
                e.printStackTrace();   
            }   
        }   
        return obj;   
    }   
    /**  
     * 测试  
     *   
     * @param args  
     * @throws IOException 
     */  
    public static void main(String[] args) throws IOException {   
        Crypt jiami = new Crypt();   
        // 执行MD5加密"Hello world!"   
        System.out.println("Hello经过MD5:" + jiami.encryptToMD5("tanovo"));   
        // 生成一个DES算法的密匙   
        SecretKey key = jiami.createSecretKey("DES");   
        // 用密匙加密信息"Hello world!"   
        String str1 = jiami.encryptToDES(key, "tanovo");   
        System.out.println("使用des加密信息tanovo为:" + str1);   
        // 使用这个密匙解密   
        String str2 = jiami.decryptByDES(key, str1);   
        System.out.println("解密后为:" + str2);   
        // 创建公匙和私匙   
        jiami.createPairKey();   
        // 对Hello world!使用私匙进行签名   
        jiami.signToInfo("Hello", "mysign.bat");   
        // 利用公匙对签名进行验证。   
        if (jiami.validateSign("mysign.bat")) {   
            System.out.println("Success!");   
        } else {   
            System.out.println("Fail!");   
        }   
    }   
}  
分享到:
评论

相关推荐

    Java实现url加密处理的方法示例

    Java中的URL加密处理是网络安全传输数据的一个重要环节,它可以防止敏感信息在传输过程中被窃取或篡改。本文将深入探讨如何使用Java实现URL加密,特别是基于Base64编码和编码转换的方式。我们将重点关注以下几个方面...

    java加密狗读取例子

    Java加密狗读取例子主要涉及的是在Java编程环境中与硬件加密设备进行交互的技术。加密狗是一种硬件安全模块,用于保护软件免受非法复制和逆向工程。在这个特定的例子中,我们关注的是ET199型号的加密狗,它通常被...

    JCT - java加密解密工具包.zip_Java加密_java 加密_jct java_加密 解密_加密工具

    Java加密解密工具包,通常用于保护敏感数据的安全,防止未经授权的访问或篡改。这个名为"JCT"的工具包提供了丰富的功能,使得开发者在Java应用中集成加密和解密操作变得更加简单。下面我们将详细探讨Java加密的相关...

    JAVA加密和解密的艺术(第二版).zip

    《JAVA加密和解密的艺术(第二版)》是一本深入探讨Java平台上的加密与解密技术的专业书籍。这本书不仅提供了理论知识,还包含了丰富的实践示例,帮助读者理解和掌握加密技术在实际应用中的运用。其内容涵盖了从基本...

    java加密程序源代码

    在实际应用中,为了提高安全性,通常会结合使用多种加密技术,比如使用非对称加密交换对称加密的密钥,然后使用对称加密处理大量数据,以兼顾安全性和效率。 遗憾的是,根据描述,这个压缩包似乎为空,无法提供具体...

    Java加密扩展基础

    Java加密扩展基础是Java开发工具包(Java SDK)中的一个重要组件,自1.4版本起,JCE(Java Cryptography Extension)被纳入核心库,为Java开发者提供了强大的安全功能。这个扩展提供了一套完整的框架,使得开发人员...

    java加密解密zip压缩包

    在Java编程环境中,处理文件的压缩与解压缩是常见的任务,而涉及到安全性,加密和解密就显得尤为重要。本文将详细讲解如何使用Java实现ZIP压缩包的加密与解密。 首先,我们需要理解加密的基本概念。加密是将明文...

    java加密网址分享

    1. **网址加密**:在实际应用中,为了保护用户隐私和数据安全,常常需要对传输的网址进行加密处理。 - **应用场景**:比如在发送邮件时附带加密链接,确保只有特定的接收者能够访问该链接。 - **实现思路**:可以...

    基于Java实现的同态加密算法的实现

    在"research_encrypt-code"这个压缩包中,很可能包含了Java实现同态加密算法的源代码,包括密钥管理、加密、解密和操作加密数据的函数。通过研究这些代码,我们可以深入了解如何在实际应用中利用Java来构建安全的...

    一个java加密程序源代码

    Java加密程序源代码是用于保护数据安全的重要工具,它通过特定的算法将原始信息转换成不可读的形式,防止未经授权的访问或泄露。本程序可能涵盖了对称加密、非对称加密以及哈希函数等多种加密技术。 对称加密是最早...

    JAVA加密与解密的艺术 第2版 pdf part2

    《Java加密与解密的艺术(第2版)》由梁栋著,以Java中的加密API和加密算法为切入点,全面介绍了Java SE 7的特性,及其中与安全相关的各种API,详细讲解了各种流行的加密算法及其在实际中的应用,为Java开发工程师和...

    java加密解密工具

    Java加密解密工具是开发过程中不可或缺的部分,尤其是在处理敏感数据时,确保数据的安全性至关重要。在Java中,我们可以使用各种库和内置API来实现加密和解密操作。本篇文章将深入探讨Java加密解密的核心概念、常用...

    用Java实现的图片加密程序

    本项目"用Java实现的图片加密程序"正是关注这一主题,它利用Java的IO流处理技术,实现了对图片文件的加密和解密功能。以下是关于这个项目的一些详细知识点: 1. **Java IO流**:Java的IO流是处理输入输出的基础,它...

    EncryptChatRoom--java加密聊天室

    《EncryptChatRoom--Java加密聊天室》是一款基于DES(Data Encryption Standard)算法的Java实现的加密聊天室项目。该项目旨在提供一个安全的通信环境,确保用户间的聊天信息不被未经授权的第三方窃取或篡改。下面...

    java AES加密 解决加密过长非法异常问题

    在Java编程语言中,AES(Advanced Encryption Standard)是一种广泛应用的对称加密算法,用于保护数据的安全性。在处理加密过程中,可能会遇到“非法参数”异常,这通常是因为输入数据长度不符合AES加密的要求。AES...

    JAVA加密与解密的艺术 第2版 pdf part1

    《Java加密与解密的艺术(第2版)》由梁栋著,以Java中的加密API和加密算法为切入点,全面介绍了Java SE 7的特性,及其中与安全相关的各种API,详细讲解了各种流行的加密算法及其在实际中的应用,为Java开发工程师和...

    java加密算法及常用知识学习杂记

    总结来说,Java加密算法的学习涵盖了理论与实践,包括理解各种加密机制、掌握Java加密库的使用、处理异构数据同步的挑战。通过深入研究和实践,开发者可以构建更安全、高效的应用程序,保障用户数据的安全。

    JAVA 加密算法(很好的算法,经典摘要)

    Java加密算法是信息安全领域中的重要组成部分,用于保护数据的隐私性和完整性。在Java平台上,有多种内置的加密库,如Java Cryptography Extension (JCE) 和 Java Cryptography Architecture (JCA),它们为开发者...

Global site tag (gtag.js) - Google Analytics