diff options
author | Florin Peter <github@florin-peter.de> | 2013-05-17 21:59:53 +0200 |
---|---|---|
committer | Florin Peter <github@florin-peter.de> | 2013-05-17 21:59:53 +0200 |
commit | cea9208ceccda86a33ec294926d39adecb962ed2 (patch) | |
tree | 5f6ef9b411d987cde99da020c3d11dc0a71fa470 /apps | |
parent | e7d1fe82aa21a1add52794f26260d8952a276773 (diff) | |
download | nextcloud-server-cea9208ceccda86a33ec294926d39adecb962ed2.tar.gz nextcloud-server-cea9208ceccda86a33ec294926d39adecb962ed2.zip |
fix broken legacy tests
Diffstat (limited to 'apps')
-rwxr-xr-x | apps/files_encryption/lib/crypt.php | 4 | ||||
-rwxr-xr-x | apps/files_encryption/tests/crypt.php | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index 56dacc94b0c..046b4601b06 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -652,7 +652,7 @@ class Crypt { return $legacyEncKey;
}
-
+
/**
* @brief encrypts content using legacy blowfish system
* @param $content the cleartext message you want to encrypt
@@ -683,7 +683,7 @@ class Crypt { $decrypted = $bf->decrypt( $content );
- return $decrypted;
+ return rtrim($decrypted, "\0");;
}
diff --git a/apps/files_encryption/tests/crypt.php b/apps/files_encryption/tests/crypt.php index 69fd99d9a82..9737eefb96c 100755 --- a/apps/files_encryption/tests/crypt.php +++ b/apps/files_encryption/tests/crypt.php @@ -595,7 +595,7 @@ class Test_Crypt extends \PHPUnit_Framework_TestCase { */ function testLegacyKeyRecryptKeyfileEncrypt( $crypted ) { - $recrypted = Encryption\Crypt::LegacyKeyRecryptKeyfile( $crypted, $this->pass, $this->genPublicKey, $this->pass ); + $recrypted = Encryption\Crypt::LegacyKeyRecryptKeyfile( $crypted, $this->pass, array($this->genPublicKey), $this->pass, ''); $this->assertNotEquals( $this->dataLong, $recrypted['data'] ); |