index
NameDescriptionIdleLinks
archiva.gitApache Archiva Repository: https://github.com/apache/archiva23 monthssummarylogtree
aspectj.gitA seamless aspect-oriented extension to the Java programming language: https://g...13 dayssummarylogtree
dcevm.gitDynamic Code Evolution VM for Java 7/8: https://github.com/dcevm/dcevm5 yearssummarylogtree
gitblit.gitPure java git solution: https://github.com/gitblit-org/gitblit6 weekssummarylogtree
gitea.gitGit with a cup of tea! Painless self-hosted all-in-one software development serv...92 min.summarylogtree
gitignore.gitA collection of useful .gitignore templates: https://github.com/github/gitignore3 hourssummarylogtree
gwtquery.gitA jQuery clone for GWT, and much more: https://github.com/gwtquery/gwtquery8 yearssummarylogtree
iciql.gitA model-based, database access wrapper for JDBC: https://github.com/gitblit/iciq...2 yearssummarylogtree
jackcess.gitMirror of the Jackcess project: https://github.com/jahlborn/jackcess3 weekssummarylogtree
javassist.gitJava bytecode engineering toolkit: https://github.com/jboss-javassist/javassist3 monthssummarylogtree
jgit.gitJGit, the Java implementation of git: https://github.com/eclipse-jgit/jgit23 hourssummarylogtree
jquery-ui.gitThe official jQuery user interface library: https://github.com/jquery/jquery-ui10 dayssummarylogtree
jquery.gitjQuery JavaScript Library: https://github.com/jquery/jquery11 dayssummarylogtree
nextcloud-server.gitNextcloud server, a safe home for all your data: https://github.com/nextcloud/se...65 min.summarylogtree
pf4j.gitPlugin Framework for Java (PF4J): https://github.com/pf4j/pf4j5 weekssummarylogtree
poi.gitMirror of Apache POI: https://github.com/apache/poi82 min.summarylogtree
redmine.gitMirror of redmine code source: https://github.com/redmine/redmine2 dayssummarylogtree
rspamd.gitRapid spam filtering system: https://github.com/rspamd/rspamd10 hourssummarylogtree
sonar-scanner-cli.gitScanner CLI for SonarQube and SonarCloud: https://github.com/SonarSource/sonar-s...12 dayssummarylogtree
sonarqube.gitContinuous Inspection: https://github.com/SonarSource/sonarqube8 hourssummarylogtree
svg.js.gitThe lightweight library for manipulating and animating SVG: https://github.com/s...5 monthssummarylogtree
tigervnc.gitHigh performance, multi-platform VNC client and server: https://github.com/Tiger...20 hourssummarylogtree
vaadin-core.gitVaadin web components: https://github.com/vaadin/vaadin-core2 dayssummarylogtree
vaadin-framework.gitVaadin 6, 7, 8 is a Java framework for modern Java web applications: https://git...43 hourssummarylogtree
vaadin.gitVaadin web components: https://github.com/vaadin/vaadin2 dayssummarylogtree
xmlgraphics-fop.gitApache XML Graphics FOP: https://github.com/apache/xmlgraphics-fop2 dayssummarylogtree
te-code-signing-crl Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/Files/Stream/DummyEncryptionWrapper.php
blob: 223e8256cd2337def3ffae83cc9a352dbe0d0031 (plain)
1
2
3
4
5
6
7
8
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
<?php
/**
 * @author Björn Schießle <schiessle@owncloud.com>
 *
 * @copyright Copyright (c) 2015, ownCloud, Inc.
 * @license AGPL-3.0
 *
 * This code is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License, version 3,
 * as published by the Free Software Foundation.
 *
 * This program 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, version 3,
 * along with this program.  If not, see <http://www.gnu.org/licenses/>
 *
 */

namespace Test\Files\Stream;

class DummyEncryptionWrapper extends \OC\Files\Stream\Encryption {
	/**
	 * simulate a non-seekable stream wrapper by always return false
	 *
	 * @param int $position
	 * @return bool
	 */
	protected function parentStreamSeek($position) {
		return false;
	}
}