1

我正在尝试从填充中删除零。我想删除零而不必使用 for 循环,那么如何从填充中删除零?

这是 SymmetricPaddingExample.java 代码:

import javax.crypto.*;
import javax.crypto.spec.SecretKeySpec;
public class SimpleSymmetricPaddingExample{

public static void main(String[] args) throws Exception{
    String s = "HelloWorld";
    byte[] input = s.getBytes();

    byte[] keyBytes = {0x00,0x01,0x02,0x03,0x04,0x05,0x06,0x07,
                          0x08,0x09,0x0a,0x0b,0x0c,0x0d,0x0e, 0x0f,
                          0x10,0x11,0x12,0x13,0x14,0x15,0x16,0x17};

    Cipher cipher = Cipher.getInstance("AES/ECB/PKCS7Padding", "BC");

    SecretKeySpec key = new SecretKeySpec(keyBytes, "AES");

    System.out.println("input: " + new String(input));

    //encryption
    cipher.init(Cipher.ENCRYPT_MODE, key);

    byte[] cipherText = new byte[cipher.getOutputSize(input.length)];

    int ctLength = cipher.update(input, 0 , input.length, cipherText, 0);

    ctLength += cipher.doFinal(cipherText, ctLength);

    System.out.println("encrypted: " + new String(cipherText));

    //Decryption
    cipher.init(Cipher.DECRYPT_MODE, key);

    byte[] plainText = new byte[cipher.getOutputSize(cipherText.length)];

    int ptLength = cipher.update(cipherText, 0, ctLength, plainText, 0);

    ptLength += cipher.doFinal(plainText, ptLength);
    System.out.println("decrypted: " + new String(plainText));
}

}
4

2 回答 2

1

PKCS7 填充不添加零。它会添加 、0x010x02020x030303填充将在您看到之前被解密方法自动删除。

您的额外零似乎是输出数组末尾剩余的额外字节。您的密码文本长度将包括填充的长度,在解密期间将自动删除。解密的明文只会部分填充您的plainText[]数组,最后留下零字节。如果您正确调整数组大小,额外的零将会消失。

于 2013-06-18T13:25:43.200 回答
0

尝试使用正则表达式。

String s = "somethingwithzeros0";
s.replaceAll("0*","");

或者您可以使用此正则表达式过滤字符串末尾的零:

s.replaceAll("0*$","");
于 2013-06-17T18:22:39.713 回答