在 java 中加密和解密密码

Encrypting and Decrypting password in java

我正在尝试做我的作业来创建一个名为 Password 的 class 实现 Encryptable 接口。

我正在尝试使用 RSA 算法。

我使用了一些来自 Google 的 RSA 代码参考,并在下面生成了我的代码。

import java.security.KeyPair;
import java.security.KeyPairGenerator;
import java.security.Key;
import java.util.Arrays;
import javax.crypto.Cipher;
import java.util.Scanner;
public class Password
{
    public static void main(String[] args) 
    {
        Scanner sc = new Scanner(System.in);
        String password = sc.nextLine();
        KeyPair keyPair = RSAKeyPair.keyPairRSA();
        Key publicKey = keyPair.getPublic();
        Key privateKey = keyPair.getPrivate();
        System.out.println("Original: " + password);
        byte[] encrypted = RSAEncryptDecrypt.encrypt(password, privateKey);
        System.out.println("Encrypted: " + new String(encrypted));
        byte[] decrypted = RSAEncryptDecrypt.decrypt(encrypted, publicKey);
        System.out.println("Decrypted: " + new String(decrypted));
    }
}
final class RSAConstants {
    private RSAConstants() {
    }
    public static final String ALGORITHM = "RSA";
    public static final int ALGORITHM_BITS = 2048;
}
class RSAKeyPair {
    public static KeyPair keyPairRSA() {
        KeyPairGenerator generator = null;
        try {
            generator = KeyPairGenerator.getInstance(RSAConstants.ALGORITHM);
        } catch (Exception e) {
            e.printStackTrace();
        }
        if (generator != null) {
            generator.initialize(RSAConstants.ALGORITHM_BITS);
            KeyPair keyPair = generator.genKeyPair();
            return keyPair;
        }
        return null;
    }
}

class RSAEncryptDecrypt {
    public static byte[] encrypt(String original, Key privateKey) {
        if (original != null && privateKey != null) {
            byte[] bs = original.getBytes();
            byte[] encData = convert(bs, privateKey, Cipher.ENCRYPT_MODE);
            return encData;
        }
        return null;
    }
    public static byte[] decrypt(byte[] encrypted, Key publicKey) {
        if (encrypted != null && publicKey != null) {
            byte[] decData = convert(encrypted, publicKey, Cipher.DECRYPT_MODE);
            return decData;
        }
        return null;
    }
    private static byte[] convert(byte[] data, Key key, int mode) {
        try {
            Cipher cipher = Cipher.getInstance(RSAConstants.ALGORITHM);
            cipher.init(mode, key);
            byte[] newData = cipher.doFinal(data);
            return newData;
        } catch (Exception e) {
            e.printStackTrace();
        }
        return null;
    }
}

我的输入是:

InterstellarGalactica

除了加密密码的结果外,一切顺利 结果如下

Original: InterstellarGalactica
Encrypted: Sªë/H?ù,X?U4??A???ìñáQ
÷?      *?7*??d?'å?Ñ¡w °??? Pè???«{?D÷??cB???'É »???qªîÉDë??~hb??z8?çÿ?hí?{mè?{*îèGê??WÅ{x??ï.5¼?úü;e??G?-F?shèn?FI
áh`UƒIàB!?åäô+D<&"?)?????ß!??3ä?¬???â???<?¬Ü?{ @ó12B?òt?ƒòÆr²Ä·oHQ?ë?«ú?°?î??Äy?:X^<?
&:ryb\?¼
Decrypted: InterstellarGalactica

为什么变成了无意义的字符?

我的代码有问题吗?

你能解释一下如何以正确的方式做到这一点(如果有的话)吗?

提前致谢。

您使用 RSA 的方式有误:

在 RSA 中,您使用 public 密钥进行加密,使用私钥进行解密。

然而,您使用私钥进行加密并使用 public 密钥进行解密:

    byte[] encrypted = RSAEncryptDecrypt.encrypt(password, privateKey);
    byte[] decrypted = RSAEncryptDecrypt.decrypt(encrypted, publicKey);

此外,请不要将包含二进制数据的 byte[] 转换为字符串。如果要打印二进制数据,请将其转换为十六进制或 base64 字符串。或者,如果您想将其打印为数字,请使用 BigInteger.

// output Base64 encoded    
System.out.println(java.util.Base64.getEncoder().encode(encrypted));

// out hexadecimal (uses Apache commons codec library
System.out.println(org.apache.commons.codec.binary.Hex.encodeHexString(encrypted));

// out hexadecimal without external library)    
System.out.println(new java.math.BigInteger(1, encrypted).toString(16))

// Output as large number (useful for manual RSA calculations)
System.out.println(new java.math.BigInteger(1, encrypted));