diff options
author | Florin Peter <github@florin-peter.de> | 2013-05-31 01:55:48 +0200 |
---|---|---|
committer | Florin Peter <github@florin-peter.de> | 2013-05-31 01:55:48 +0200 |
commit | ccdfb5942616a5b4bfeea04cfafac91017afc010 (patch) | |
tree | 6381ff5a4a348ad521252373dd979abc97f521e0 /apps | |
parent | 8e324aad38851f866c536416a0e8809b330f9c99 (diff) | |
download | nextcloud-server-ccdfb5942616a5b4bfeea04cfafac91017afc010.tar.gz nextcloud-server-ccdfb5942616a5b4bfeea04cfafac91017afc010.zip |
fix legacy key in until test
Diffstat (limited to 'apps')
-rwxr-xr-x | apps/files_encryption/tests/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_encryption/tests/util.php b/apps/files_encryption/tests/util.php index 0dc452a41c8..b36d7e41172 100755 --- a/apps/files_encryption/tests/util.php +++ b/apps/files_encryption/tests/util.php @@ -75,7 +75,7 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase { $this->legacyData = realpath(dirname(__FILE__) . '/legacy-text.txt'); $this->legacyEncryptedData = realpath(dirname(__FILE__) . '/legacy-encrypted-text.txt'); $this->legacyEncryptedDataKey = realpath(dirname(__FILE__) . '/encryption.key'); - $this->legacyKey = '30943623843030686906'; + $this->legacyKey = "30943623843030686906\0\0\0\0"; $keypair = Encryption\Crypt::createKeypair(); |