javax.crypto.Cipher - 如何获取包含前128个ASCII字符的密文

javax.crypto.Cipher - How to obtain cipher text contaning the first 128 ASCII characters

我需要在 Java 中实现一个使用 AES128 加密字符串的方法。 (我对解密输出不感兴趣。)为了实现这一点,我修改了此处给出的示例。 Java AES 256 encryption

这是我当前的实现。

package com.test.demo;

import java.security.InvalidKeyException;
import java.security.Key;
import java.security.NoSuchAlgorithmException;

import javax.crypto.BadPaddingException;
import javax.crypto.Cipher;
import javax.crypto.IllegalBlockSizeException;
import javax.crypto.NoSuchPaddingException;
import javax.crypto.spec.SecretKeySpec;
import javax.xml.bind.DatatypeConverter;

import org.apache.commons.codec.binary.Base64;
import org.apache.log4j.Logger;

public class StringEncryptor {

    private static final Logger LOGGER = Logger.getLogger(StringEncryptor.class);

    public static String getEncryptedString(String input){

        if(input == null){
            return null;
        }

        String keyString = "C0BAE23DF8B51807B3E17D21925FADF2";//32 byte string
        byte[] keyValue = DatatypeConverter.parseHexBinary(keyString);
        Key key = new SecretKeySpec(keyValue, "AES");
        Cipher c1 = null;
        try {
            c1 = Cipher.getInstance("AES");
        } catch (NoSuchAlgorithmException | NoSuchPaddingException e) {
            LOGGER.error("error getting cypher", e);
            return null;
        }
        try {
            c1.init(Cipher.ENCRYPT_MODE, key);
        } catch (InvalidKeyException e) {
            LOGGER.error("error initalising cypher", e);
            return null;
        }

        byte[] encVal = null;
        try {
            encVal = c1.doFinal(input.getBytes());
        } catch (IllegalBlockSizeException | BadPaddingException e) {
            LOGGER.error("error performing encryption", e);
            return null;
        }
        String encryptedValue = Base64.encodeBase64String(encVal);

        return encryptedValue;
    }
}

问题是,在检查测试输出时,字符串只包含字符 [a-zA-Z+/]。我希望我的加密字符串包含前 128 个 ASCII 字符的全部范围。

如有任何建议,我将不胜感激。非常感谢。

您正在使用 Base64 对仅使用 64 个 ASCII 字符的文本进行编码。

我不知道使用前 128 个字符的任何流行编码,因为这意味着使用 ASCII NUL 字符和各种其他控制字符。如果你只接受一个普通的二进制字符串,你可以简单地删除行

String encryptedValue = Base64.encodeBase64String(encVal);