Blame view
sources/apps/files_encryption/lib/stream.php
18.3 KB
|
03e52840d
|
1 2 3 4 |
<?php /** * ownCloud * |
|
f7d878ff1
|
5 6 7 8 |
* @author Bjoern Schiessle, Robin Appelman * @copyright 2014 Bjoern Schiessle <schiessle@owncloud.com> * 2012 Sam Tuke <samtuke@owncloud.com>, * 2011 Robin Appelman <icewind1991@gmail.com> |
|
03e52840d
|
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
*/
/**
* transparently encrypted filestream
*
* you can use it as wrapper around an existing stream by setting CryptStream::$sourceStreams['foo']=array('path'=>$path,'stream'=>$stream)
* and then fopen('crypt://streams/foo');
*/
namespace OCA\Encryption;
/**
|
|
6d9380f96
|
35 |
* Provides 'crypt://' stream wrapper protocol. |
|
03e52840d
|
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
* @note We use a stream wrapper because it is the most secure way to handle
* decrypted content transfers. There is no safe way to decrypt the entire file
* somewhere on the server, so we have to encrypt and decrypt blocks on the fly.
* @note Paths used with this protocol MUST BE RELATIVE. Use URLs like:
* crypt://filename, or crypt://subdirectory/filename, NOT
* crypt:///home/user/owncloud/data. Otherwise keyfiles will be put in
* [owncloud]/data/user/files_encryption/keyfiles/home/user/owncloud/data and
* will not be accessible to other methods.
* @note Data read and written must always be 8192 bytes long, as this is the
* buffer size used internally by PHP. The encryption process makes the input
* data longer, and input is chunked into smaller pieces in order to result in
* a 8192 encrypted block size.
* @note When files are deleted via webdav, or when they are updated and the
* previous version deleted, this is handled by OC\Files\View, and thus the
* encryption proxies are used and keyfiles deleted.
*/
class Stream {
|
|
f7d878ff1
|
53 54 |
const PADDING_CHAR = '-'; |
|
03e52840d
|
55 56 |
private $plainKey; private $encKeyfiles; |
|
03e52840d
|
57 58 59 |
private $rawPath; // The raw path relative to the data dir private $relPath; // rel path to users file dir private $userId; |
|
31b7f2792
|
60 |
private $keyId; |
|
03e52840d
|
61 62 63 64 65 66 67 |
private $handle; // Resource returned by fopen private $meta = array(); // Header / meta for source stream private $writeCache; private $size; private $unencryptedSize; private $publicKey; private $encKeyfile; |
|
31b7f2792
|
68 |
private $newFile; // helper var, we only need to write the keyfile for new files |
|
837968727
|
69 70 |
private $isLocalTmpFile = false; // do we operate on a local tmp file private $localTmpFile; // path of local tmp file |
|
f7d878ff1
|
71 72 73 |
private $headerWritten = false; private $containHeader = false; // the file contain a header private $cipher; // cipher used for encryption/decryption |
|
837968727
|
74 |
|
|
03e52840d
|
75 76 77 78 |
/** * @var \OC\Files\View */ private $rootView; // a fsview object set to '/' |
|
31b7f2792
|
79 |
|
|
03e52840d
|
80 81 82 83 84 85 86 |
/** * @var \OCA\Encryption\Session */ private $session; private $privateKey; /** |
|
6d9380f96
|
87 88 89 90 |
* @param string $path raw path relative to data/ * @param string $mode * @param int $options * @param string $opened_path |
|
03e52840d
|
91 92 93 |
* @return bool
*/
public function stream_open($path, $mode, $options, &$opened_path) {
|
|
f7d878ff1
|
94 95 |
// read default cipher from config $this->cipher = Helper::getCipher(); |
|
31b7f2792
|
96 97 |
// assume that the file already exist before we decide it finally in getKey() $this->newFile = false; |
|
03e52840d
|
98 |
if (!isset($this->rootView)) {
|
|
6d9380f96
|
99 |
$this->rootView = new \OC\Files\View('/');
|
|
03e52840d
|
100 101 102 |
} $this->session = new \OCA\Encryption\Session($this->rootView); |
|
31b7f2792
|
103 |
$this->privateKey = $this->session->getPrivateKey(); |
|
03e52840d
|
104 |
|
|
837968727
|
105 106 107 108 109 110 111 112 |
$normalizedPath = \OC\Files\Filesystem::normalizePath(str_replace('crypt://', '', $path));
if ($originalFile = Helper::getPathFromTmpFile($normalizedPath)) {
$this->rawPath = $originalFile;
$this->isLocalTmpFile = true;
$this->localTmpFile = $normalizedPath;
} else {
$this->rawPath = $normalizedPath;
}
|
|
03e52840d
|
113 |
|
|
31b7f2792
|
114 115 116 117 118 119 120 |
$this->userId = Helper::getUser($this->rawPath); $util = new Util($this->rootView, $this->userId); // get the key ID which we want to use, can be the users key or the // public share key $this->keyId = $util->getKeyId(); |
|
03e52840d
|
121 122 |
// Strip identifier text from path, this gives us the path relative to data/<user>/files |
|
31b7f2792
|
123 124 125 126 127 |
$this->relPath = Helper::stripUserFilesPath($this->rawPath);
// if raw path doesn't point to a real file, check if it is a version or a file in the trash bin
if ($this->relPath === false) {
$this->relPath = Helper::getPathToRealFile($this->rawPath);
}
|
|
03e52840d
|
128 |
|
|
31b7f2792
|
129 130 131 132 |
if($this->relPath === false) {
\OCP\Util::writeLog('Encryption library', 'failed to open file "' . $this->rawPath . '" expecting a path to "files", "files_versions" or "cache"', \OCP\Util::ERROR);
return false;
}
|
|
03e52840d
|
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 |
// Disable fileproxies so we can get the file size and open the source file without recursive encryption
$proxyStatus = \OC_FileProxy::$enabled;
\OC_FileProxy::$enabled = false;
if (
$mode === 'w'
or $mode === 'w+'
or $mode === 'wb'
or $mode === 'wb+'
) {
// We're writing a new file so start write counter with 0 bytes
$this->size = 0;
$this->unencryptedSize = 0;
} else {
if($this->privateKey === false) {
// if private key is not valid redirect user to a error page
|
|
31b7f2792
|
153 |
\OCA\Encryption\Helper::redirectToErrorPage($this->session); |
|
03e52840d
|
154 |
} |
|
837968727
|
155 |
$this->size = $this->rootView->filesize($this->rawPath); |
|
f7d878ff1
|
156 157 |
$this->readHeader(); |
|
03e52840d
|
158 |
} |
|
837968727
|
159 160 161 162 163 |
if ($this->isLocalTmpFile) {
$this->handle = fopen($this->localTmpFile, $mode);
} else {
$this->handle = $this->rootView->fopen($this->rawPath, $mode);
}
|
|
03e52840d
|
164 165 166 167 168 169 170 171 172 173 |
\OC_FileProxy::$enabled = $proxyStatus;
if (!is_resource($this->handle)) {
\OCP\Util::writeLog('Encryption library', 'failed to open file "' . $this->rawPath . '"', \OCP\Util::ERROR);
} else {
$this->meta = stream_get_meta_data($this->handle);
|
|
a293d369c
|
174 175 176 |
// sometimes fopen changes the mode, e.g. for a url "r" convert to "r+" // but we need to remember the original access type $this->meta['mode'] = $mode; |
|
03e52840d
|
177 178 179 180 181 182 183 |
} return is_resource($this->handle); } |
|
f7d878ff1
|
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 |
private function readHeader() {
if ($this->isLocalTmpFile) {
$handle = fopen($this->localTmpFile, 'r');
} else {
$handle = $this->rootView->fopen($this->rawPath, 'r');
}
if (is_resource($handle)) {
$data = fread($handle, Crypt::BLOCKSIZE);
$header = Crypt::parseHeader($data);
$this->cipher = Crypt::getCipher($header);
// remeber that we found a header
if (!empty($header)) {
$this->containHeader = true;
}
fclose($handle);
}
}
|
|
03e52840d
|
206 |
/** |
|
6d9380f96
|
207 208 |
* Returns the current position of the file pointer * @return int position of the file pointer |
|
837968727
|
209 210 211 212 213 214 |
*/
public function stream_tell() {
return ftell($this->handle);
}
/**
|
|
6d9380f96
|
215 |
* @param int $offset |
|
03e52840d
|
216 |
* @param int $whence |
|
837968727
|
217 |
* @return bool true if fseek was successful, otherwise false |
|
03e52840d
|
218 219 220 221 |
*/
public function stream_seek($offset, $whence = SEEK_SET) {
$this->flush();
|
|
f7d878ff1
|
222 223 224 225 |
// ignore the header and just overstep it
if ($this->containHeader) {
$offset += Crypt::BLOCKSIZE;
}
|
|
837968727
|
226 227 228 |
// this wrapper needs to return "true" for success. // the fseek call itself returns 0 on succeess return !fseek($this->handle, $offset, $whence); |
|
03e52840d
|
229 230 231 232 |
} /** |
|
6d9380f96
|
233 |
* @param int $count |
|
03e52840d
|
234 |
* @return bool|string |
|
f7d878ff1
|
235 |
* @throws \OCA\Encryption\Exceptions\EncryptionException |
|
03e52840d
|
236 237 238 239 |
*/
public function stream_read($count) {
$this->writeCache = '';
|
|
f7d878ff1
|
240 |
if ($count !== Crypt::BLOCKSIZE) {
|
|
03e52840d
|
241 |
\OCP\Util::writeLog('Encryption library', 'PHP "bug" 21641 no longer holds, decryption system requires refactoring', \OCP\Util::FATAL);
|
|
f7d878ff1
|
242 |
throw new \OCA\Encryption\Exceptions\EncryptionException('expected a blog size of 8192 byte', 20);
|
|
03e52840d
|
243 244 245 246 |
} // Get the data from the file handle $data = fread($this->handle, $count); |
|
f7d878ff1
|
247 248 249 250 |
// if this block contained the header we move on to the next block
if (Crypt::isHeader($data)) {
$data = fread($this->handle, $count);
}
|
|
03e52840d
|
251 252 253 254 255 256 257 258 259 260 261 262 263 |
$result = null;
if (strlen($data)) {
if (!$this->getKey()) {
// Error! We don't have a key to decrypt the file with
throw new \Exception(
'Encryption key not found for "' . $this->rawPath . '" during attempted read via stream');
} else {
// Decrypt data
|
|
f7d878ff1
|
264 |
$result = Crypt::symmetricDecryptFileContent($data, $this->plainKey, $this->cipher); |
|
03e52840d
|
265 266 267 268 269 270 271 272 273 |
} } return $result; } /** |
|
6d9380f96
|
274 |
* Encrypt and pad data ready for writing to disk |
|
03e52840d
|
275 276 277 278 279 280 281 |
* @param string $plainData data to be encrypted
* @param string $key key to use for encryption
* @return string encrypted data on success, false on failure
*/
public function preWriteEncrypt($plainData, $key) {
// Encrypt data to 'catfile', which includes IV
|
|
f7d878ff1
|
282 |
if ($encrypted = Crypt::symmetricEncryptFileContent($plainData, $key, $this->cipher)) {
|
|
03e52840d
|
283 284 285 286 287 288 289 290 291 292 293 294 |
return $encrypted;
} else {
return false;
}
}
/**
|
|
6d9380f96
|
295 |
* Fetch the plain encryption key for the file and set it as plainKey property |
|
03e52840d
|
296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
* @internal param bool $generate if true, a new key will be generated if none can be found
* @return bool true on key found and set, false on key not found and new key generated and set
*/
public function getKey() {
// Check if key is already set
if (isset($this->plainKey) && isset($this->encKeyfile)) {
return true;
}
// Fetch and decrypt keyfile
// Fetch existing keyfile
|
|
31b7f2792
|
310 311 |
$util = new \OCA\Encryption\Util($this->rootView, $this->userId); $this->encKeyfile = Keymanager::getFileKey($this->rootView, $util, $this->relPath); |
|
03e52840d
|
312 313 314 |
// If a keyfile already exists
if ($this->encKeyfile) {
|
|
31b7f2792
|
315 |
$shareKey = Keymanager::getShareKey($this->rootView, $this->keyId, $util, $this->relPath); |
|
03e52840d
|
316 317 |
// if there is no valid private key return false
if ($this->privateKey === false) {
|
|
03e52840d
|
318 |
// if private key is not valid redirect user to a error page |
|
31b7f2792
|
319 |
\OCA\Encryption\Helper::redirectToErrorPage($this->session); |
|
03e52840d
|
320 321 |
return false; } |
|
31b7f2792
|
322 323 324 325 326 |
if ($shareKey === false) {
// if no share key is available redirect user to a error page
\OCA\Encryption\Helper::redirectToErrorPage($this->session, \OCA\Encryption\Crypt::ENCRYPTION_NO_SHARE_KEY_FOUND);
return false;
}
|
|
03e52840d
|
327 328 329 330 331 332 |
$this->plainKey = Crypt::multiKeyDecrypt($this->encKeyfile, $shareKey, $this->privateKey);
return true;
} else {
|
|
31b7f2792
|
333 |
$this->newFile = true; |
|
03e52840d
|
334 335 336 337 338 339 340 |
return false; } } /** |
|
f7d878ff1
|
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
* write header at beginning of encrypted file
*
* @throws Exceptions\EncryptionException
*/
private function writeHeader() {
$header = Crypt::generateHeader();
if (strlen($header) > Crypt::BLOCKSIZE) {
throw new Exceptions\EncryptionException('max header size exceeded', 30);
}
$paddedHeader = str_pad($header, Crypt::BLOCKSIZE, self::PADDING_CHAR, STR_PAD_RIGHT);
fwrite($this->handle, $paddedHeader);
$this->headerWritten = true;
}
/**
|
|
6d9380f96
|
360 |
* Handle plain data from the stream, and write it in 8192 byte blocks |
|
03e52840d
|
361 362 363 364 365 366 367 368 369 370 371 372 373 374 |
* @param string $data data to be written to disk
* @note the data will be written to the path stored in the stream handle, set in stream_open()
* @note $data is only ever be a maximum of 8192 bytes long. This is set by PHP internally. stream_write() is called multiple times in a loop on data larger than 8192 bytes
* @note Because the encryption process used increases the length of $data, a writeCache is used to carry over data which would not fit in the required block size
* @note Padding is added to each encrypted block to ensure that the resulting block is exactly 8192 bytes. This is removed during stream_read
* @note PHP automatically updates the file pointer after writing data to reflect it's length. There is generally no need to update the poitner manually using fseek
*/
public function stream_write($data) {
// if there is no valid private key return false
if ($this->privateKey === false) {
$this->size = 0;
return strlen($data);
}
|
|
f7d878ff1
|
375 376 377 |
if ($this->headerWritten === false) {
$this->writeHeader();
}
|
|
03e52840d
|
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 |
// Disable the file proxies so that encryption is not
// automatically attempted when the file is written to disk -
// we are handling that separately here and we don't want to
// get into an infinite loop
$proxyStatus = \OC_FileProxy::$enabled;
\OC_FileProxy::$enabled = false;
// Get the length of the unencrypted data that we are handling
$length = strlen($data);
// Find out where we are up to in the writing of data to the
// file
$pointer = ftell($this->handle);
// Get / generate the keyfile for the file we're handling
// If we're writing a new file (not overwriting an existing
// one), save the newly generated keyfile
if (!$this->getKey()) {
$this->plainKey = Crypt::generateKey();
}
// If extra data is left over from the last round, make sure it
// is integrated into the next 6126 / 8192 block
if ($this->writeCache) {
// Concat writeCache to start of $data
$data = $this->writeCache . $data;
// Clear the write cache, ready for reuse - it has been
// flushed and its old contents processed
$this->writeCache = '';
}
// While there still remains some data to be processed & written
while (strlen($data) > 0) {
// Remaining length for this iteration, not of the
// entire file (may be greater than 8192 bytes)
$remainingLength = strlen($data);
// If data remaining to be written is less than the
// size of 1 6126 byte block
if ($remainingLength < 6126) {
// Set writeCache to contents of $data
// The writeCache will be carried over to the
// next write round, and added to the start of
// $data to ensure that written blocks are
// always the correct length. If there is still
// data in writeCache after the writing round
// has finished, then the data will be written
// to disk by $this->flush().
$this->writeCache = $data;
// Clear $data ready for next round
$data = '';
} else {
// Read the chunk from the start of $data
$chunk = substr($data, 0, 6126);
$encrypted = $this->preWriteEncrypt($chunk, $this->plainKey);
// Write the data chunk to disk. This will be
// attended to the last data chunk if the file
// being handled totals more than 6126 bytes
fwrite($this->handle, $encrypted);
// Remove the chunk we just processed from
// $data, leaving only unprocessed data in $data
// var, for handling on the next round
$data = substr($data, 6126);
}
}
$this->size = max($this->size, $pointer + $length);
$this->unencryptedSize += $length;
\OC_FileProxy::$enabled = $proxyStatus;
return $length;
}
/**
|
|
6d9380f96
|
470 471 472 |
* @param int $option * @param int $arg1 * @param int|null $arg2 |
|
03e52840d
|
473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 |
*/
public function stream_set_option($option, $arg1, $arg2) {
$return = false;
switch ($option) {
case STREAM_OPTION_BLOCKING:
$return = stream_set_blocking($this->handle, $arg1);
break;
case STREAM_OPTION_READ_TIMEOUT:
$return = stream_set_timeout($this->handle, $arg1, $arg2);
break;
case STREAM_OPTION_WRITE_BUFFER:
$return = stream_set_write_buffer($this->handle, $arg1);
}
return $return;
}
/**
* @return array
*/
public function stream_stat() {
return fstat($this->handle);
}
/**
|
|
6d9380f96
|
498 |
* @param int $mode |
|
03e52840d
|
499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 |
*/
public function stream_lock($mode) {
return flock($this->handle, $mode);
}
/**
* @return bool
*/
public function stream_flush() {
return fflush($this->handle);
// Not a typo: http://php.net/manual/en/function.fflush.php
}
/**
* @return bool
*/
public function stream_eof() {
return feof($this->handle);
}
private function flush() {
if ($this->writeCache) {
// Set keyfile property for file in question
$this->getKey();
$encrypted = $this->preWriteEncrypt($this->writeCache, $this->plainKey);
fwrite($this->handle, $encrypted);
$this->writeCache = '';
|
|
03e52840d
|
533 |
} |
|
03e52840d
|
534 535 536 537 538 539 540 541 542 543 544 |
}
/**
* @return bool
*/
public function stream_close() {
$this->flush();
// if there is no valid private key return false
if ($this->privateKey === false) {
|
|
31b7f2792
|
545 |
// cleanup |
|
837968727
|
546 |
if ($this->meta['mode'] !== 'r' && $this->meta['mode'] !== 'rb' && !$this->isLocalTmpFile) {
|
|
03e52840d
|
547 |
|
|
31b7f2792
|
548 549 550 |
// Disable encryption proxy to prevent recursive calls $proxyStatus = \OC_FileProxy::$enabled; \OC_FileProxy::$enabled = false; |
|
03e52840d
|
551 |
|
|
31b7f2792
|
552 553 |
if ($this->rootView->file_exists($this->rawPath) && $this->size === 0) {
$this->rootView->unlink($this->rawPath);
|
|
03e52840d
|
554 |
} |
|
31b7f2792
|
555 556 557 |
// Re-enable proxy - our work is done \OC_FileProxy::$enabled = $proxyStatus; } |
|
03e52840d
|
558 |
// if private key is not valid redirect user to a error page |
|
31b7f2792
|
559 |
\OCA\Encryption\Helper::redirectToErrorPage($this->session); |
|
03e52840d
|
560 561 562 |
} if ( |
|
31b7f2792
|
563 564 |
$this->meta['mode'] !== 'r' && $this->meta['mode'] !== 'rb' && |
|
837968727
|
565 |
$this->isLocalTmpFile === false && |
|
31b7f2792
|
566 567 |
$this->size > 0 && $this->unencryptedSize > 0 |
|
03e52840d
|
568 |
) {
|
|
31b7f2792
|
569 570 |
// only write keyfiles if it was a new file
if ($this->newFile === true) {
|
|
03e52840d
|
571 |
|
|
31b7f2792
|
572 573 574 |
// Disable encryption proxy to prevent recursive calls $proxyStatus = \OC_FileProxy::$enabled; \OC_FileProxy::$enabled = false; |
|
03e52840d
|
575 |
|
|
31b7f2792
|
576 577 |
// Fetch user's public key $this->publicKey = Keymanager::getPublicKey($this->rootView, $this->keyId); |
|
03e52840d
|
578 |
|
|
31b7f2792
|
579 580 |
// Check if OC sharing api is enabled $sharingEnabled = \OCP\Share::isEnabled(); |
|
03e52840d
|
581 |
|
|
31b7f2792
|
582 |
$util = new Util($this->rootView, $this->userId); |
|
03e52840d
|
583 |
|
|
31b7f2792
|
584 |
// Get all users sharing the file includes current user |
|
6d9380f96
|
585 |
$uniqueUserIds = $util->getSharingUsersArray($sharingEnabled, $this->relPath); |
|
31b7f2792
|
586 |
$checkedUserIds = $util->filterShareReadyUsers($uniqueUserIds); |
|
03e52840d
|
587 |
|
|
31b7f2792
|
588 589 |
// Fetch public keys for all sharing users $publicKeys = Keymanager::getPublicKeys($this->rootView, $checkedUserIds['ready']); |
|
03e52840d
|
590 |
|
|
31b7f2792
|
591 592 |
// Encrypt enc key for all sharing users $this->encKeyfiles = Crypt::multiKeyEncrypt($this->plainKey, $publicKeys); |
|
03e52840d
|
593 |
|
|
31b7f2792
|
594 595 |
// Save the new encrypted file key Keymanager::setFileKey($this->rootView, $util, $this->relPath, $this->encKeyfiles['data']); |
|
03e52840d
|
596 |
|
|
31b7f2792
|
597 598 |
// Save the sharekeys Keymanager::setShareKeys($this->rootView, $util, $this->relPath, $this->encKeyfiles['keys']); |
|
03e52840d
|
599 |
|
|
31b7f2792
|
600 601 602 |
// Re-enable proxy - our work is done \OC_FileProxy::$enabled = $proxyStatus; } |
|
03e52840d
|
603 |
|
|
31b7f2792
|
604 605 606 |
// we need to update the file info for the real file, not for the // part file. $path = Helper::stripPartialFileExtension($this->rawPath); |
|
03e52840d
|
607 |
|
|
6d9380f96
|
608 609 610 611 612 |
$fileInfo = array( 'encrypted' => true, 'size' => $this->size, 'unencrypted_size' => $this->unencryptedSize, ); |
|
31b7f2792
|
613 |
|
|
6d9380f96
|
614 615 616 617 |
// set fileinfo $this->rootView->putFileInfo($path, $fileInfo); } |
|
03e52840d
|
618 |
|
|
6d9380f96
|
619 620 621 622 |
$result = fclose($this->handle);
if ($result === false) {
\OCP\Util::writeLog('Encryption library', 'Could not close stream, file could be corrupted', \OCP\Util::FATAL);
|
|
03e52840d
|
623 |
} |
|
6d9380f96
|
624 |
return $result; |
|
03e52840d
|
625 626 627 |
} } |