C#和Java实现互通的RSA&DES加解密算法(二)

这篇博客详细介绍了如何在Java中实现RSA和DES的加解密算法,包括RSA的字符串加密、解密、签名和验证签名,以及DES的加密和解密。代码示例提供了完整的加密和解密方法,便于C#和Java之间的互通使用。
摘要由CSDN通过智能技术生成

2 Java部分

2.1 RSA加密

2.1.1 返回字符串

    /// <summary>
    /// RSA字符串加密(加密最大长度为117字节)
    /// </summary>
    /// <param name="data">待加密字符串</param>
    /// <param name="keyFile">公钥文件路径</param>    
    /// <returns>加密后的字节数组base64后的字符串</returns>
    public static String RSAEncryptStr(String data, String keyFile) {
        try {
            KeyFactory fact = KeyFactory.getInstance("RSA");
            
            // 读取公钥
            readKeyFromFile(keyFile);            
            byte[] modulusBytes = Base64.decode(module);
            byte[] exponentBytes = Base64.decode(exponentString);
            BigInteger modulus = new BigInteger(1, modulusBytes);
            BigInteger exponent = new BigInteger(1, exponentBytes);
            RSAPublicKeySpec rsaPubKey = new RSAPublicKeySpec(modulus, exponent);            
            PublicKey pubKey = fact.generatePublic(rsaPubKey);

            Cipher cipher = Cipher.getInstance("RSA");            
            cipher.init(Cipher.ENCRYPT_MODE, pubKey);            
            byte[] byteCipherData = cipher.doFinal(data.getBytes());
            
            String strEncrypt = Base64.encode(byteCipherData);
            return strEncrypt;
            
        } catch (Exception e) {
            e.printStackTrace();
        }
        return null;

    }

2.1.2 返回字节数组

    /// <summary>
    /// RSA字符串加密(加密最大长度为117字节)
    /// </summary>
    /// <param name="data">待加密字符串</param>
    /// <param name="keyFile">公钥文件路径</param>    
    /// <returns>加密后的字节数组</returns>
    public static byte[] RSAEncrypt(String data, String keyFile) {
        try {
            KeyFactory fact = KeyFactory.getInstance("RSA");
            
            // 读取公钥
            readKeyFromFile(keyFile);            
            byte[] modulusBytes = Base64.decode(module);
            byte[] exponentBytes = Base64.decode(exponentString);
            BigInteger modulus = new BigInteger(1, modulusBytes);
            BigInteger exponent = new BigInteger(1, exponentBytes);
            RSAPublicKeySpec rsaPubKey = new RSAPublicKeySpec(modulus, exponent);            
            PublicKey pubKey = fact.generatePublic(rsaPubKey);

            Cipher cipher = Cipher.getInstance("RSA");
            cipher.init(Cipher.ENCRYPT_MODE, pubKey);
            byte[] byteCipherData = cipher.doFinal(data.getBytes());
            return byteCipherData;
            
        } catch (Exception e) {
            e.printStackTrace();
        }
        return null;
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值