如何摆脱PKCS7Padding中的零

时间:2013-06-17 17:31:23

标签: java encryption

我正在尝试从填充中删除零。我想删除零而不必使用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));
}

}

2 个答案:

答案 0 :(得分:1)

PKCS7填充不添加零。它添加了0x010x02020x030303等。填充将在您看到之前通过解密方法自动删除。

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

答案 1 :(得分:0)

尝试使用正则表达式。

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

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

s.replaceAll("0*$","");