diff options
author | jknockaert <jasper@knockaert.nl> | 2015-02-19 16:12:01 +0100 |
---|---|---|
committer | jknockaert <jasper@knockaert.nl> | 2015-02-19 16:12:01 +0100 |
commit | 9ff9f27f8a681f7b732d7aac01740d2485c29ef0 (patch) | |
tree | 80d094c294bcc4b338cdebc597e7ba7120b3e33e /apps/files_encryption | |
parent | a490e21d0d1957f88e0c884bb0588090e4ae9c33 (diff) | |
parent | 417e40d218037cd6f930a8dbacfe951eb9499e82 (diff) | |
download | nextcloud-server-9ff9f27f8a681f7b732d7aac01740d2485c29ef0.tar.gz nextcloud-server-9ff9f27f8a681f7b732d7aac01740d2485c29ef0.zip |
try again
Diffstat (limited to 'apps/files_encryption')
-rw-r--r-- | apps/files_encryption/lib/stream.php | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/apps/files_encryption/lib/stream.php b/apps/files_encryption/lib/stream.php index 7a60f0d685b..bcca1c56de5 100644 --- a/apps/files_encryption/lib/stream.php +++ b/apps/files_encryption/lib/stream.php @@ -182,10 +182,20 @@ class Stream { $this->unencryptedSize = 0; } else { $this->size = $this->rootView->filesize($this->rawPath); +<<<<<<< HEAD \OC_FileProxy::$enabled = true; $this->unencryptedSize = $this->rootView->filesize($this->rawPath); \OC_FileProxy::$enabled = false; $this->readHeader(); +======= + $this->readHeader(); + } + + if ($this->isLocalTmpFile) { + $this->handle = fopen($this->localTmpFile, $mode); + } else { + $this->handle = $this->rootView->fopen($this->rawPath, $mode); +>>>>>>> origin/master } \OC_FileProxy::$enabled = $proxyStatus; @@ -290,7 +300,19 @@ class Stream { */ public function stream_read($count) { +<<<<<<< HEAD $result = ''; +======= + $this->writeCache = ''; + + if ($count !== Crypt::BLOCKSIZE) { + \OCP\Util::writeLog('Encryption library', 'PHP "bug" 21641 no longer holds, decryption system requires refactoring', \OCP\Util::FATAL); + throw new EncryptionException('expected a block size of 8192 byte', EncryptionException::UNEXPECTED_BLOCK_SIZE); + } + + // Get the data from the file handle + $data = fread($this->handle, $count); +>>>>>>> origin/master // limit to the end of the unencrypted file; otherwise getFileSize will fail and it is good practise anyway $count=min($count,$this->unencryptedSize - $this->position); @@ -360,9 +382,23 @@ class Stream { } +<<<<<<< HEAD + $util = new Util($this->rootView, $this->userId); + + // Fetch and decrypt keyfile + // Fetch existing keyfile +<<<<<<< HEAD + $this->encKeyfile = Keymanager::getFileKey($this->rootView, $this->util, $this->relPath); +======= + $this->encKeyfile = Keymanager::getFileKey($this->rootView, $util, $this->relPath); +======= + // $util = new Util($this->rootView, $this->userId); + // Fetch and decrypt keyfile // Fetch existing keyfile $this->encKeyfile = Keymanager::getFileKey($this->rootView, $this->util, $this->relPath); +>>>>>>> origin/master +>>>>>>> origin/master // If a keyfile already exists if ($this->encKeyfile) { |