0

加密货币:

    import java.security.NoSuchAlgorithmException;

    import javax.crypto.Cipher;
    import javax.crypto.NoSuchPaddingException;
    import javax.crypto.spec.IvParameterSpec;
    import javax.crypto.spec.SecretKeySpec;

    public class MCrypt {

            private String iv = "fedcba9876543210";
            private IvParameterSpec ivspec;
            private SecretKeySpec keyspec;
            private Cipher cipher;

            private String SecretKey = "0123456789abcdef";

            public MCrypt()
            {
                    ivspec = new IvParameterSpec(iv.getBytes());

                    keyspec = new SecretKeySpec(SecretKey.getBytes(), "AES");

                    try {
                            cipher = Cipher.getInstance("AES/CBC/NoPadding");
                    } catch (NoSuchAlgorithmException e) {
                            // TODO Auto-generated catch block
                            e.printStackTrace();
                    } catch (NoSuchPaddingException e) {
                            // TODO Auto-generated catch block
                            e.printStackTrace();
                    }
            }

            public byte[] encrypt(String text) throws Exception
            {
                    if(text == null || text.length() == 0)
                            throw new Exception("Empty string");

                    byte[] encrypted = null;

                    try {
                            cipher.init(Cipher.ENCRYPT_MODE, keyspec, ivspec);

                            encrypted = cipher.doFinal(padString(text).getBytes());
                    } catch (Exception e)
                    {                       
                            throw new Exception("[encrypt] " + e.getMessage());
                    }

                    return encrypted;
            }

            public byte[] decrypt(String code) throws Exception
            {
                    if(code == null || code.length() == 0)
                            throw new Exception("Empty string");

                    byte[] decrypted = null;

                    try {
                            cipher.init(Cipher.DECRYPT_MODE, keyspec, ivspec);

                            decrypted = cipher.doFinal(hexToBytes(code));
                    } catch (Exception e)
                    {
                            throw new Exception("[decrypt] " + e.getMessage());
                    }
                    return decrypted;
            }



            public static String bytesToHex(byte[] data)
            {
                    if (data==null)
                    {
                            return null;
                    }

                    int len = data.length;
                    String str = "";
                    for (int i=0; i<len; i++) {
                            if ((data[i]&0xFF)<16)
                                    str = str + "0" + java.lang.Integer.toHexString(data[i]&0xFF);
                            else
                                    str = str + java.lang.Integer.toHexString(data[i]&0xFF);
                    }
                    return str;
            }


            public static byte[] hexToBytes(String str) {
                    if (str==null) {
                            return null;
                    } else if (str.length() < 2) {
                            return null;
                    } else {
                            int len = str.length() / 2;
                            byte[] buffer = new byte[len];
                            for (int i=0; i<len; i++) {
                                    buffer[i] = (byte) Integer.parseInt(str.substring(i*2,i*2+2),16);
                            }
                            return buffer;
                    }
            }



            private static String padString(String source)
            {
              char paddingChar = ' ';
              int size = 16;
              int x = source.length() % size;
              int padLength = size - x;

              for (int i = 0; i < padLength; i++)
              {
                      source += paddingChar;
              }

              return source;
            }
    }

主要的:

mcrypt = new MCrypt();
/* Encrypt */
String encrypted = MCrypt.bytesToHex( mcrypt.encrypt("Text to Encrypt") );
//Returns 9975e28df055c336a9b7090b03f88689
/* Decrypt */
String decrypted = new String( mcrypt.decrypt( encrypted ) );
//Returns "Text to Encrypt "

问题:

String encrypted = MCrypt.bytesToHex( mcrypt.encrypt("Text to Encrypt") );
加密返回: 9975e28df055c336a9b7090b03f88689(不正确)
String decrypted = new String( mcrypt.decrypt( encrypted ) );
解密返回: “Text to Encrypt”(正确反映了加密的内容,Encrypt 后有一个“”)

我把它缩小到这一行:
encrypted = cipher.doFinal(padString(text).getBytes());

我尝试更改 padString 函数,char paddingChar = 0;而不是char paddingChar = ' ';没有运气......

正确加密后,“要加密的文本”应变为“cb4b4ca864213684070465b38783a6c8”

4

1 回答 1

3

AES 是一种块密码。它将一个 256 位块(=16 字节)加密为不同的 256 位块。您的纯文本“要加密的文本”是 15 个字符或 248 位。AES 不能按原样加密它,但必须添加一些填充以使其成为一个完整的块。

如果显式添加填充字符,则必须显式删除它。每个不同的填充字符都会对解密产生很大的影响。平均而言,更改输入明文块中的一位将更改输出密文块中 50% 的位。

您最简单的解决方案是在 Java 中使用填充工具中的 buit。您将密码指定为:"AES/CBC/NoPadding"。将其更改"AES/CBC/PKCS5Padding"为加密和解密。不要担心密文是什么样子,只需检查明文是否与解密后的密文匹配,一个字符一个字符。

一个常见的错误是使用getBytes(). 不要那样做,因为它容易出错。您应该准确指定您在字符和字节之间使用的映射。使用类似的东西:

byte[] plainBytes = plaintextString.getBytes("UTF-8");

和另一边类似。不要依赖系统默认值总是相同的。

于 2012-08-24T12:59:40.370 回答