使用 java 中已确定的 RSA public 密钥加密密钥
encyrpt a key with setted RSA public key in java
我正在尝试加密密码。首先我会设置一个 rsa public 密钥,然后加密密码。但我的结果在 java 和 java 脚本代码之间并不相等。有没有办法或样品。你可以帮帮我吗?谢谢。
这是我的java脚本代码
var rsa = new RSAKey();
rsa.setPublic(rasn, rase);
var res = rsa.encrypt("myPassword");
return restotal;
这是我的 java 代码
RSA1 rsa = new RSA1(new BigInteger(rasn.getBytes()),new BigInteger(rase.getBytes()));
String text1 = "myPassword";
BigInteger plaintext = new BigInteger(text1.getBytes());
BigInteger ciphertext = rsa.encrypt(plaintext);
System.out.println(ciphertext);
我正在尝试加密密码。首先我会设置一个 rsa public 密钥,然后加密密码。但我的结果在 java 和 java 脚本代码之间并不相等。有没有办法或样品。你可以帮帮我吗?谢谢。
这是我的java脚本代码
var rsa = new RSAKey();
rsa.setPublic(rasn, rase);
var res = rsa.encrypt("myPassword");
return restotal;
这是我的 java 代码
RSA1 rsa = new RSA1(new BigInteger(rasn.getBytes()),new BigInteger(rase.getBytes()));
String text1 = "myPassword";
BigInteger plaintext = new BigInteger(text1.getBytes());
BigInteger ciphertext = rsa.encrypt(plaintext);
System.out.println(ciphertext);