()
| 194 | } |
| 195 | |
| 196 | public boolean localValidEncryptedFileFound() throws IOException{ |
| 197 | boolean result = false; |
| 198 | File f = new File(getContentPath()); |
| 199 | if(f.exists()){ |
| 200 | result = true; |
| 201 | if(f.length() == fst.getTmd().contents[this.getContentID()].size){ |
| 202 | result = true; |
| 203 | } |
| 204 | } |
| 205 | return result; |
| 206 | } |
| 207 | |
| 208 | |
| 209 | public void downloadAndDecrypt(Progress progress) { |
no test coverage detected