bugfix: correct decryption of looooooong filenames (>255 chars)

This commit is contained in:
Sebastian Stenzel
2014-12-08 22:25:45 +01:00
parent ebb3207854
commit 884b894e04
10 changed files with 99 additions and 32 deletions
@@ -16,7 +16,7 @@ public interface CryptorIOSupport {
void writePathSpecificMetadata(String encryptedPath, byte[] encryptedMetadata) throws IOException;
/**
* @return Previously written encryptedMetadata stored at the given encryptedPath.
* @return Previously written encryptedMetadata stored at the given encryptedPath or <code>null</code> if no such file exists.
*/
byte[] readPathSpecificMetadata(String encryptedPath) throws IOException;