java-实现有弹性的城堡aes 256

我正在研究聊天应用程序.主要功能是以加密形式发送消息,当消息到达目的地时可以解密.我遇到的问题是消息没有在目的地解密,但是它们以加密形式到达目的地.

代码的工作方式:

>客户端A向客户端B发送消息“ Hello”.
>当客户端A单击“发送消息”按钮时,我将该文本保存在字符串中,然后将该字符串与键和iv一起传递给Encrypt方法,如下所示:

en=enc.encrypt(msg.getBytes(), key.getBytes(), iv.getBytes());

我将该字节(en)转换为字符串,并将其发送给另一个客户端B.
>当我打开接收消息的另一个类时,我得到了字符串(en),然后再次将其转换为字节,然后将其传递给Decrypt方法.但是,每当我运行该项目时,它都不会起作用.试图在尝试捕获中做到这一点,但也没有奏效.可能是因为它已经在一个大的try catch语句中了,这使其变得更加混乱.

我的代码:

package com.socket;

import org.bouncycastle.crypto.CipherParameters;
import org.bouncycastle.crypto.engines.AESEngine;
import org.bouncycastle.crypto.modes.CBCBlockCipher;
import org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher;
import org.bouncycastle.crypto.params.KeyParameter;
import org.bouncycastle.crypto.params.ParametersWithIV;

public class Encrypt {

  public Encrypt() {
  }

  public static byte[] cipherData(PaddedBufferedBlockCipher cipher, byte[] data)
      throws Exception {
    int minSize = cipher.getOutputSize(data.length);

    byte[] outBuf = new byte[minSize];

    int length1 = cipher.processBytes(data, 0, data.length, outBuf, 0);

    int length2 = cipher.doFinal(outBuf, length1);

    int actualLength = length1 + length2;

    byte[] result = new byte[actualLength];

    System.arraycopy(outBuf, 0, result, 0, result.length);

    return result;
  }

  public static byte[] decrypt(byte[] cipher, byte[] key, byte[] iv)
      throws Exception {

    PaddedBufferedBlockCipher aes = new PaddedBufferedBlockCipher(
        new CBCBlockCipher(new AESEngine()));

    CipherParameters ivAndKey = new ParametersWithIV(new KeyParameter(key), iv);

    aes.init(false, ivAndKey);

    return cipherData(aes, cipher);
  }

  public byte[] encrypt(byte[] plain, byte[] key, byte[] iv) throws Exception {

    PaddedBufferedBlockCipher aes = new PaddedBufferedBlockCipher(
        new CBCBlockCipher(

        new AESEngine()));

    CipherParameters ivAndKey = new ParametersWithIV(new KeyParameter(key), iv);

    aes.init(true, ivAndKey);

    return cipherData(aes, plain);
  }
}

解决方法:

您定期使用String.getBytes().几乎可以肯定您在其中一个地方出错. getBytes()是平台相关的,因此您可能在不同的系统上获得不同的字节.此外,并非所有字节都是有效的字符编码.因此,如果您的密钥/ IV由安全的随机字节组成(它们应该这样做),则解密将…有时会失败.

一般的答案是使用指定良好的字符编码(例如UTF-8)将字符转换为字节,并使用base-64或十六进制等编码将字节转换为字符.

上一篇:java.security.NoSuchProviderException: no such provider: BC 的问题解决


下一篇:Android 生成bks证书