- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
运行代码时出现编译错误。
Error: javax.crypto.BadPaddingException: Data must start with zero
在这一行testClient.java
byte[] newPlainText = cipher.doFinal(cipherTextFromServer);
客户端无法解密从服务器加密的消息。我的代码有什么错误吗?
//TestServer.java
public class TestServer {
public static void main(String[] args) throws Exception{
//set variables for port number, RSA key size
final int port = 3344;
final int RSAKeySize = 1024;
final String newline = "\n";
//set public key, sockets, server text, plain text
PublicKey pubKey = null;
PrivateKey priKey = null;
ServerSocket server = null;
Socket client = null;
String serverText = "Hello Client! This is an authentication message from server";
byte[] plainText = serverText.getBytes("UTF8");
//initialize RSA
try {
System.out.println("Start generating RSA key");
KeyPairGenerator RSAKeyGen = KeyPairGenerator.getInstance("RSA");
SecureRandom random = new SecureRandom();
RSAKeyGen.initialize(RSAKeySize,random);
KeyPair pair = RSAKeyGen.generateKeyPair();
System.out.println("Finish generating RSA key");
pubKey = pair.getPublic();
priKey = pair.getPrivate();
}catch (GeneralSecurityException e){
System.out.println(e.getLocalizedMessage() + newline);
System.out.println("Error initialising encryption. Exiting.\n");
System.exit(0);
}
//initialize cryptography, set cipherText
Cipher cipher = Cipher.getInstance("RSA/ECB/PKCS1Padding");
System.out.println("RSA cipher object and provider"+cipher.getProvider().getInfo());
System.out.println("Start Encryption for plainText");
cipher.init(Cipher.ENCRYPT_MODE, pubKey);
byte[] cipherText = cipher.doFinal(plainText);
System.out.println("Finish Encryption to cipherText: ");
BASE64Encoder base64 = new BASE64Encoder();
String encryptedValue = base64.encode(cipherText);
//String encryptedValue = new sun.misc.BASE64Encoder().encode(cipherText);
System.out.println(new String(cipherText,"UTF8"));
System.out.println("Base64");
System.out.println(encryptedValue);
//initialize socket connection
try{
server = new ServerSocket(port);
client = server.accept();
}catch(IOException e){
System.out.println("Error initialising I/O.\n");
System.exit(0);
}
//send server private key
try{
System.out.println("Send private key out");
System.out.println(DatatypeConverter.printHexBinary(priKey.getEncoded()));
ByteBuffer bb = ByteBuffer.allocate(4);
bb.putInt(priKey.getEncoded().length);
client.getOutputStream().write(bb.array());
client.getOutputStream().write(pubKey.getEncoded());
client.getOutputStream().flush();
}catch (IOException e){
System.out.println("I/O Error");
System.exit(0);
}
//send cipherText
ObjectOutputStream obOut = new ObjectOutputStream(client.getOutputStream());
obOut.writeObject(encryptedValue);
obOut.flush();
client.close();
}
}
//TestClient.java
public class TestClient {
public static void main(String[] args){
//throws IOException, NoSuchAlgorithmException, NoSuchPaddingException, ClassNotFoundException,
//InvalidKeyException, IllegalBlockSizeException, BadPaddingException {
//set variable for port, socket, server public key
final int port = 3344;
Socket sock = null;
Key serverPubKey = null;
final int RSAKeySize = 1024;
final String newline = "\n";
Key priKey = null;
//setup connection by creating socket
try{
sock = new Socket(InetAddress.getLocalHost(),port);
}catch(UnknownHostException e){
System.out.println("Unknown host.");
System.exit(1);
}catch(IOException e){
System.out.println("No I/O");
System.exit(1);
}
//get public key from server
try{
byte[] lenb = new byte[4];
sock.getInputStream().read(lenb,0,4);
ByteBuffer bb = ByteBuffer.wrap(lenb);
int len = bb.getInt();
System.out.println(len);
byte[] servPubKeyBytes = new byte[len];
sock.getInputStream().read(servPubKeyBytes);
System.out.println(DatatypeConverter.printHexBinary(servPubKeyBytes));
X509EncodedKeySpec ks = new X509EncodedKeySpec(servPubKeyBytes);
KeyFactory kf = KeyFactory.getInstance("RSA");
serverPubKey = kf.generatePublic(ks);
System.out.println(DatatypeConverter.printHexBinary(serverPubKey.getEncoded()));
//PrivateKey privateKey = KeyFactory.getInstance("RSA").generatePrivate(new PKCS8EncodedKeySpec(privateKeyBytes));
}catch (IOException e) {
System.out.println("Error obtaining server public key 1.");
System.exit(0);
} catch (NoSuchAlgorithmException e) {
System.out.println("Error obtaining server public key 2.");
System.exit(0);
} catch (InvalidKeySpecException e) {
System.out.println("Error obtaining server public key 3.");
System.exit(0);
}
try {
System.out.println("Start generating RSA key");
KeyPairGenerator RSAKeyGen = KeyPairGenerator.getInstance("RSA");
SecureRandom random = new SecureRandom();
RSAKeyGen.initialize(RSAKeySize, random);
KeyPair pair = RSAKeyGen.generateKeyPair();
System.out.println("Finish generating RSA key");
priKey = pair.getPrivate();
}catch (GeneralSecurityException e){
System.out.println(e.getLocalizedMessage() + newline);
System.out.println("Error initialising encryption. Exiting.\n");
System.exit(0);
}
try{
//Decrypt message from server
BufferedReader in = new BufferedReader(new InputStreamReader(sock.getInputStream()));
String message = in.readLine();
//ObjectInputStream obIn = new ObjectInputStream(sock.getInputStream());
//Object obj = obIn.readObject();
System.out.println(message);
byte[] cipherTextFromServer = new BASE64Decoder().decodeBuffer(message);
Cipher cipher = Cipher.getInstance("RSA/ECB/PKCS1Padding");
System.out.println("Start decryption");
cipher.init(Cipher.DECRYPT_MODE, priKey);
byte[] newPlainText = cipher.doFinal(cipherTextFromServer);
System.out.println("Finish decryption: ");
System.out.println(new String(newPlainText,"UTF8"));
sock.close();
}catch(Exception e){
e.printStackTrace();
}
}
}
最佳答案
您的代码看起来完全损坏了。您使用服务器上生成的公钥对数据进行加密,然后使用客户端上生成的私钥对其进行解密。这永远不会起作用,因为 key 对不匹配。
为了进一步混淆问题,您似乎尝试在服务器和客户端之间发送 key ,但这看起来也被破坏了,例如
ByteBuffer bb = ByteBuffer.allocate(4);
bb.putInt(priKey.getEncoded().length);
client.getOutputStream().write(bb.array());
client.getOutputStream().write(pubKey.getEncoded()); // pubKey?!!
您应该完全重新考虑您的设计。私钥通常不是集中生成并向外分发的。相反,请考虑让您的客户端生成 key 对并将其公钥发送到服务器,服务器可以使用它来加密数据。
关于javax.crypto.BadPaddingException : Data must start with zero with client cannot decrypt from server,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22783294/
翻译: 用法:zeros(shape, dtype=float, order='C') 返回:返回来一个给定形状和类型的用0填充的数组; 参数:shape:形状 dtype:数据类型,可选参
我想像这样格式化一个 double: 1.23 => 1.2 1.0 => 1 0.4 => 0.4 0 => 0 对应的字符串格式是什么?我目前正在使用 StringFormat={}{0
在 simple geometric program 中用 Javascript 和 Canvas 编写,当我将 Angular 设置为 270° (1½π) 时,我预计 Math.cos(θ) 会变
我们有一些基于 Linux (Centos) 的虚拟机,它们将用作可分发的虚拟设备。我们希望能够尽可能地压缩它们以便分发(通过 tar.gz、zip 等)。 我们删除了所有不必要的文件(.log's、
之前有一个问题,它得到了答案: 感谢那。 “现在我已经格式化了我的单元格: h "小时"m "分钟" 因此,如果我的单元格有 7:00,它会显示为 7 小时 0 分钟。如果小时或分钟为零,有没有办法删
这个问题已经有答案了: C program to convert Fahrenheit to Celsius always prints zero (6 个回答) 已关闭 4 年前。 我的以下简单编码
我有一个类的以下代码。这是一个类的初始化。 第三方动态链接库 [DllImport("gdi32.dll")] public static extern IntPtr CreateCompatib
这是我书中的一段代码,我不确定匹配是如何工作的,因为它似乎第一个案例匹配所有内容。以下是 Ocaml 向我提出的警告: # let zero = 0;; # let one = 1;; # let r
我正在尝试重构一些现有代码into a more monodic approach 。现有代码包含接口(interface) IXInterface 和数字,例如 int 和 bool。默认情况下,数
我一直在考虑单词序列的 0 填充以及如何将 0 填充转换为嵌入层。乍一看,人们会认为您也希望保持嵌入 = 0.0。但是,keras 中的嵌入层会为任何输入标记生成随机值,并且无法强制其生成 0.0。请
我正在尝试使用 Pandas 解决以下 python 面试问题: 给定一个 m x n 矩阵,如果一个元素为 0,则将其整个行和列设置为 0。就地执行。 这里有一些例子: # Example 1 [[
我正在优化我正在编写的程序中最耗时的循环,该循环对数组中的许多条目求和,其中许多条目将为零。在添加之前检查条目是否为零或跳过检查并添加所有条目是否更快?下面每一个的例子。这是在 C++ 中。谢谢! d
之前(作为菜鸟)我将它作为 R 包错误提交,让我由你们来运行它。我认为以下所有内容都很好: replace_number("123 0 boogie") [1] "one hundred twenty
默认情况下,在BPI零M2上禁用eth0。。在这里,我们将演示如何启用它
我有一个 PG 数据库表价格。结构如下: id name total_sales created_at 1 A 0.0 2016-01-01
这个问题在这里已经有了答案: Difference between numpy.array shape (R, 1) and (R,) (8 个答案) 关闭 6 年前。 有什么区别 numpy.ze
是否可以通过 Skype 用户窗口获取处理程序并使用 SendMessage(whdl,BM_CLICK,intptr.zero,intrptr.zero,intptr.zero) 单击发送文件或调用
我使用开箱即用的 MVC 4 简单成员资格。我对网站做了很多修改,现在我要回去清理,我发现我不能再修改我的密码了。我一定是视而不见,因为我认为这应该很容易解决,但我只花了 2 天时间解决这个问题。 我
我是CorePlot的新手,终于搞定了一些散线图显示。如何将 X 轴设置为零并位于图形底部,将 Y 轴设置为零并位于图形左侧? 最佳答案 将 plotSpace 的 xRange 设置为 plotSp
我已经为数据表实现了 LazyLoading。当我使用分页浏览数据表时,出现以下异常。 com.sun.faces.context.PartialViewContextImpl processPart
我是一名优秀的程序员,十分优秀!