我使用对称密钥(AES)加密文件,然后使用rsa密钥加密密钥。 编码工作正常,但在解密时会出错: 这是堆栈跟踪: http://pastebin.com/37AB7EPH
我已经尝试了一切,请帮助我谢谢。
@RequestMapping(value= "/{userId}/uploadresource/{userEmail:.*}", method = RequestMethod.POST )
@ResponseBody
public void GetResourcesByUser(@PathVariable("userId") int UserId, @PathVariable("userEmail") String userEmail, HttpServletRequest request, @RequestParam MultipartFile file ) throws InvalidKeySpecException, NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException, IllegalBlockSizeException, BadPaddingException, IOException{
Users recieverUser =userService.GetUserByEmail(userEmail);
Users senderUser= userService.getUserById(UserId);
int receiverUserId = recieverUser.getUser_id();
Profile receiverProfile = userService.getUserProfile(receiverUserId);
byte[] receiverPublicKey=receiverProfile.getPublicKey();
PublicKey testPubKey=X509CertificateGenerator.encodedByteToPublicKey(receiverPublicKey);
KeyGenerator keyGen = KeyGenerator.getInstance("AES");
keyGen.init(192); // for example
SecretKey secretKey = keyGen.generateKey();
byte[] secretKeyEncoded= secretKey.getEncoded();
Cipher cipher = Cipher.getInstance("AES");
cipher.init(Cipher.ENCRYPT_MODE, secretKey);
byte[] cipherData = cipher.doFinal(file.getBytes());
Cipher cipher1 = Cipher.getInstance("RSA/ECB/PKCS1Padding");
cipher1.init(Cipher.ENCRYPT_MODE, testPubKey);
byte[] aesKeyEncryptedBytes = cipher.doFinal(secretKeyEncoded);
String senderUserName= senderUser.getUser_email();
AsymetricSharing sharing= new AsymetricSharing();
sharing.setReceiverId(receiverUserId);
sharing.setResourceFile(cipherData);
sharing.setResourceName(file.getOriginalFilename());
sharing.setSenderId(senderUser.getUser_id());
sharing.setSenderName(senderUserName);
sharing.setSymetricKey(aesKeyEncryptedBytes);
resourseService.uploadAsymmetricResource(sharing);
//resources=this.resourseService.GetResourcesInGroup(group_id);
}
Decrypt Asmmetric File ...
@RequestMapping(value="/{userId}/downloadfile/{sharingId}", method = RequestMethod.GET, produces="application/json")
public ResponseEntity<?> downloadAsymmetricFile(@PathVariable("sharingId") int sharingId, @PathVariable("userId") int userId, HttpServletResponse response) throws IOException, SQLException, InvalidKeyException, InvalidAlgorithmParameterException, NoSuchAlgorithmException, NoSuchProviderException, NoSuchPaddingException, IllegalBlockSizeException, BadPaddingException, InvalidKeySpecException {
AsymetricSharing file= resourseService.getFile(sharingId);
if(file!=null){
Profile receiverProfile= userService.getUserProfile(userId);
byte [] receiverPrivateKey=receiverProfile.getPrivateKey();
PrivateKey testPvtKey=Converter.encodedByteToKey(receiverPrivateKey);
Cipher cipher = Cipher.getInstance("RSA");
cipher.init(Cipher.DECRYPT_MODE, testPvtKey);
byte[] symetricKeyBytes = cipher.doFinal(file.getSymetricKey());
SecretKey symetricKey = new SecretKeySpec(symetricKeyBytes, "AES");
Cipher cipher1 = Cipher.getInstance("AES");
cipher1.init(Cipher.DECRYPT_MODE, symetricKey);
byte[] plainText = cipher.doFinal(file.getResourceFile());
response.setContentLength(plainText.length);
response.setHeader("Content-Disposition","attachment; filename=\"" + file.getResourceName() +"\"");
FileCopyUtils.copy(plainText, response.getOutputStream());
return new ResponseEntity<>(file, HttpStatus.OK);
}
else
{
//if no entity present against id, return not found and bad request Http status.
return new ResponseEntity<>("Not found", HttpStatus.BAD_REQUEST);
}
}
答案 0 :(得分:2)
.style("fill", function(d) {
return d.y>5 ? '#ff0000' : color(d.y);
});
解密时没有填充RSA(如RSA / ECB / NoPadding)。尝试将其更改为与加密中相同的值(&#34; RSA / ECB / PKCS1Padding&#34;)。如果我不清楚,RSA加密值也可以不打开,对不起我的英文:/