使用修改的Vigenere密码算法,解密不会导致原始输入

时间:2015-07-02 08:36:04

标签: java encryption vigenere

我已经修改了Vigenere密码算法,但是我遇到了问题。如果我加密String,然后解密结果,我就不会让原来的String回复。我的源代码:

public class ViganereEncryptionBase64 {

    private char[] keys = new char[19];

    int sizeKey = 0;
    int cimin = 0;

    final String MVEAs = " !\"#$%&'()=+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_'abcdefghijklmnopqrstuvwxyz{|}~";

    public ViganereEncryptionBase64() {
        String keys = "bangdollaMC08ITATS";
        this.keys = keys.toCharArray();
    }

    public String encrypt(String toEncrypt) {
        char charsToEncrypt[] = toEncrypt.toCharArray();
        char encryptedChars[] = toEncrypt.toCharArray();
        int i = 0;
        while (i < encryptedChars.length) {

            int sube = MVEAs.indexOf(charsToEncrypt[i]) + MVEAs.indexOf(keys[sizeKey]) + cimin;

            sizeKey++;
            if (sizeKey == keys.length)
                sizeKey = 0;

            encryptedChars[i] = MVEAs.charAt(Math.floorMod(sube, 95));
            cimin = MVEAs.indexOf(encryptedChars[i]);
            i += 1;
        }
        return String.valueOf(encryptedChars);
    }

    public String decrypt(String toDecrypt) {
        char charsToDecrypt[] = toDecrypt.toCharArray();
        char decryptedChars[] = toDecrypt.toCharArray();
        int i = 0;
        while (i < charsToDecrypt.length) {
            int sube = MVEAs.indexOf(charsToDecrypt[i]) - MVEAs.indexOf(keys[sizeKey]) - cimin;

            sizeKey++;
            if (sizeKey == keys.length)
                sizeKey = 0;
            decryptedChars[i] = MVEAs.charAt(Math.floorMod(sube, 95));
            cimin = MVEAs.indexOf(charsToDecrypt[i]);
            i++;
        }
        return String.valueOf(decryptedChars);
    }
}

说明问题的用例是

public static void main(String[] args) {
    ViganereEncryptionBase64 viganere = new ViganereEncryptionBase64();
    System.out.println("Result encryption: " + viganere.encrypt("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">"));
    viganere = new ViganereEncryptionBase64();
    System.out.println("Result description: " + viganere.decrypt("~at,4X~<Cp|\"(>rdnds~1x_\\XTmN5T{irX-9DZv+opkhJLbT[x7Mk/'J&|p&A0qAMR_yh9|H#\\Y91/kKtQI,Su3Ik, p$@IH.c:Ue'Lj25X L#[3f8ql3U]oF"));
}

其中原始输入为"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">"

,加密结果为"~at,4X~<Cp|\"(>rdnds~1x_\\XTmN5T{irX-9DZv+opkhJLbT[x7Mk/'J&|p&A0qAMR_yh9|H#\\Y91/kKtQI,Su3Ik, p$@IH.c:Ue'Lj25X L#[3f8ql3U]oF"

然后解密的结果为"<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">"

这是不同的。

1 个答案:

答案 0 :(得分:2)

因此,您的加密和解密工作正常,我已经运行了您的代码,并且没有看到任何测试输入和输出之间的任何差异。

如果我们使用不需要转义序列的示例,我认为您可能会被the backslashes \ being used as escape characters弄糊涂:

public static void main(String[] args) {
    viganere = new ViganereEncryptionBase64();
    System.out.println("Result encryption: " + viganere.encrypt("Hello!"));
    // Which is encrypted to "+R.b7("

    viganere = new ViganereEncryptionBase64();
    System.out.println("Result description: " + viganere.decrypt("+R.b7("));
    // Which is decrypted to "Hello!"
}

你可以看到它完美无缺。

在您的示例中,每个\之前有一个",这样Java就不会认为您已经结束了String,您会注意到它让它你在"的一半使用String而没有结束它。

所以实际上\中仍有一个String,看起来没有一个,因为它不会被System.out.println打印出来。所有转义字符都是如此;当打印给用户时,它们将被翻译成标签或新行e.t.c。