java - AES加密/解密java bouncy caSTLe解释?

标签 java encryption aes

有人可以解释一下这个程序在做什么并指出一些要点吗?我正在查看代码,我完全迷失了。我只需要有关加密/解密阶段的解释。我认为它会在某一时刻生成 AES 192 key ,但我不能 100% 确定。我不确定 byte/ivBytes 的用途。

import java.security.Key;
import javax.crypto.Cipher;
import javax.crypto.KeyGenerator;
import javax.crypto.spec.IvParameterSpec;

public class RandomKey
{
    public static void main(String[] args) throws Exception
    {
    byte[] input = new byte[] { 
                        0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 
                        0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
                        0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07 };


    byte[] ivBytes = new byte[] { 
                        0x00, 0x00, 0x00, 0x01, 0x04, 0x05, 0x06, 0x07,
                        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 };

    //initializing a new initialization vector  
    IvParameterSpec ivSpec  = new IvParameterSpec(ivBytes);
    //what does this actually do?
    Cipher cipher = Cipher.getInstance("AES/CTR/NoPadding", "BC");
    //what does this do?
    KeyGenerator generator = KeyGenerator.getInstance("AES","BC");
    //I assume this generates a key size of 192 bits
    generator.init(192);
    //does this generate a random key?
    Key encryptKey = generator.generateKey();

    System.out.println("input: " +toHex(input));

    //encryption phase
    cipher.init(Cipher.ENCRYPT_MODE, encryptKey, ivSpec);
    //what is this doing?
    byte[] cipherText = new byte[cipher.getOutputSize(input.length)];
    //what is this doing?
    int ctLength = cipher.update(input, 0, input.length, cipherText,0);

    //getting the cipher text length i assume?
    ctLength += cipher.doFinal (cipherText, ctLength );
    System.out.println ("Cipher: " +toHex(cipherText) + " bytes: " + ctLength);


    //decryption phase
    cipher.init(Cipher.DECRYPT_MODE, encryptKey, ivSpec);
    //storing the ciphertext in plaintext i'm assuming?
    byte[] plainText = new byte[cipher.getOutputSize(ctLength)];
    int ptLength = cipher.update(cipherText, 0, ctLength, plainText, 0);
    //getting plaintextLength i think?
    ptLength= cipher.doFinal (plainText, ptLength);
    System.out.println("plain: " + toHex(plainText, ptLength));  

    }

private static String digits = "0123456789abcdef";

public static String toHex(byte[] data, int length)
{
    StringBuffer buf = new StringBuffer();

    for (int i=0; i!= length; i++)
    {
        int v = data[i] & 0xff;

        buf.append(digits.charAt(v >>4));
        buf.append(digits.charAt(v & 0xf));
    }
    return buf.toString();

}

public static String toHex(byte[] data)
{
    return toHex(data, data.length);
}
}

最佳答案

 //what does this actually do?
 Cipher cipher = Cipher.getInstance("AES/CTR/NoPadding", "BC");

这使用 Bouncy CaSTLe (“BC”) 提供程序来获取 AES 密码的实例,该实例设置为计数器模式 (CTR),无填充 (NoPadding)。请参阅维基百科 Block Cypher modesPadding 。 Javadoc 也会为您提供帮助。

//what does this do?
KeyGenerator generator = KeyGenerator.getInstance("AES","BC");

这再次使用 Bouncy CaSTLe 提供程序为 AES 设置 key 生成器。您可以阅读 Javadoc 以了解更多信息。

//what is this doing?
byte[] cipherText = new byte[cipher.getOutputSize(input.length)];

它设置一个足够大的字节数组来保存加密的输出。

//what is this doing?
int ctLength = cipher.update(input, 0, input.length, cipherText,0);

它实际上是在进行加密。检查 Javadoc 中的 update() 方法以获得更好的解释。

//getting the cipher text length i assume?
ctLength += cipher.doFinal (cipherText, ctLength );

没有。看看那个+=它正在更新密文长度。再次阅读 Javadoc,了解 update()doFinal() 方法之间的差异。

关于java - AES加密/解密java bouncy caSTLe解释?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11337117/

相关文章:

Java 识别图像中的特定对象

java - 写出 Tomcat 响应头

java - 如何像在 C++ 中一样在 Java 中使用命令模式?

Java 安卓错误 "too much data for RSA block"

java - Cipher.getMaxAllowedKeyLength ("AES") 返回 128,如果我想执行 AES256,这意味着什么

java - hashCode() : Objects. hash() 和基类?

PHP - 创建随机哈希字符串以进行电子邮件闭环验证

javascript - 用 PHP 加密,用 Javascript 解密(cryptojs)

java - 如何将 SHA-1 输出的数组大小从 20 字节更改为适合 AES 加密中的 IV 16 字节

c++ - CNG 中的 AES-CBC 加密输出与在线工具不匹配