随机替换密码Java

时间:2014-03-18 05:06:57

标签: java encryption

我在Java中制作一个随机替换密码。基本上,程序会要求您输入一个句子,您输入句子,它会使用句子并使用随机生成的字母表对其进行加密。用户可以选择加密或解密。然后,加密的密文将显示在屏幕上。如果用户选择这样,程序将解密密码并显示原始纯文本消息。

这是我到目前为止所拥有的:

    Random gen = new Random();
    PrintWriter write = new PrintWriter(new File("CryptCode.txt"));
    char[] chars = new char[] {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'};
                                //'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'};
    char[] cryptList = new char[26];

    int tracker = 0;
    while(tracker < 26)
    {
        int num = gen.nextInt(26);
        if(cryptList[num] == '\u0000')
        {
        cryptList[num] = chars[tracker];
        tracker++;
        }
    }

    for(int i = 0; i < 26; i++)
    {
        write.println(chars[i] + " " + cryptList[i]);
    }
    write.close();

这只是生成随机字母表。我不知道如何实现实际的加密方法。我可以自己处理文件IO和提示给用户。我无法理解如何创建替代算法。任何帮助是极大的赞赏。一旦我在我面前加密方法,我可能会弄清楚解密方法,但截至目前我还不知道如何继续。谢谢!

2 个答案:

答案 0 :(得分:1)

我以前做过这个,这就是我做到的:

private static char[] alphabet = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i',
'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v',
'w', 'x', 'y', 'z'};

public static char[] shiftAlphabet(int shift)
{
    char[] newAlpha = new char[26];
    for (int i = 0; i < 26; i++)
    {
        if(((i + shift) < 26) && ((i + shift) >= 0))
        {
            newAlpha[i]  = alphabet[i + shift];
        }
        else if ((i + shift) >= 26)
        {
            newAlpha[i] = alphabet[i + shift - 26];
        }
    }
    return newAlpha;
}
public static String encrypt(String s, int shift)
{
    String e = "";
    for(int i = 0; i < s.length(); i++)
    {
        char letter = s.charAt(i);
        if (letter != ' ')
        {
            int f = find(alphabet, letter);
            if(((f + shift) < 26) && ((f + shift) >= 0))
            {
                letter  = alphabet[f + shift];
            }
            else if ((f + shift) >= 26)
            {
                letter = alphabet[f + shift - 26];
            }
            e = e + String.valueOf(letter);
        }
        else 
        {
            e = e + " ";
        }
    }
    return e;
}
public static int find(char[] c, char c2)
{
    int w = 0;
    for(int i = 0; i < c.length; i++)
    {
        if(c[i] == (c2))
            w = i;
    }
    return w;
}

第一种方法将字母表移动一个特定的整数,第二种方法使用最后一种方法加密消息,该方法在字母表中找到字母的位置(它返回0到25之间的值)。因此,使用这些方法,在主方法中,您可以生成1到26之间的随机数,并将其用作&#34; shift&#34;变量,然后提示用户输入他/她想要加密的消息。

答案 1 :(得分:0)

替换算法意味着它用一些字符替换一个字符

你可以采取多种方式

1.substitute the character with nth character from now.
     example: a is replaced by e
              b is replaced by f
2.substitute the character with (n+i)th character from now. to replace abf
     example: a is replaced by f(a=1,n=5)
              b is replaced by g(b=2,n=5)
              f is replaced by m(f=3,n=5)

一般来说每个机构都使用rot13作为替换密码之一,它取代了字符串的第13个字符