summaryrefslogtreecommitdiffstats
path: root/apps/encryption/lib/crypto/crypt.php
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2015-08-25 15:58:07 +0200
committerBjoern Schiessle <schiessle@owncloud.com>2015-08-30 15:31:19 +0200
commit166e57cf611b659892748fc7799e85a82553b042 (patch)
treea9f16c0f601bac4f95e2c9a96f0725daf43a6a12 /apps/encryption/lib/crypto/crypt.php
parentf893de413670877aa91af2559a1eee369b4590d6 (diff)
downloadnextcloud-server-166e57cf611b659892748fc7799e85a82553b042.tar.gz
nextcloud-server-166e57cf611b659892748fc7799e85a82553b042.zip
return false if private key is not valid
Diffstat (limited to 'apps/encryption/lib/crypto/crypt.php')
-rw-r--r--apps/encryption/lib/crypto/crypt.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/encryption/lib/crypto/crypt.php b/apps/encryption/lib/crypto/crypt.php
index 6c4c108f50a..5d1bb92460a 100644
--- a/apps/encryption/lib/crypto/crypt.php
+++ b/apps/encryption/lib/crypto/crypt.php
@@ -398,7 +398,7 @@ class Crypt {
}
}
- return true;
+ return false;
}
/**