(FEntry fileEntry,String outputPath)
| 391 | } |
| 392 | |
| 393 | public byte[] decryptContent(FEntry fileEntry,String outputPath) throws IOException { |
| 394 | InputStream input = new FileInputStream(fileEntry.getContentPath()); |
| 395 | ByteArrayOutputStream bos = new ByteArrayOutputStream(); |
| 396 | |
| 397 | decryptStream(input,bos,fileEntry); |
| 398 | |
| 399 | byte[] result = bos.toByteArray(); |
| 400 | bos.close(); |
| 401 | return result; |
| 402 | } |
| 403 | |
| 404 | |
| 405 | public void decrypt(FEntry fileEntry,String outputPath) throws IOException { |
nothing calls this directly
no test coverage detected