diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-05-25 16:31:27 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-06-01 16:14:24 +0200 |
commit | 6bd0b88f33ce52170cc940b21c536a90c9e0dae6 (patch) | |
tree | 632918abc843171ffaa4ba4830b843b7a3d26df8 /apps/encryption | |
parent | 47de152d7635ab2129fab15b9286cb880f579598 (diff) | |
download | nextcloud-server-6bd0b88f33ce52170cc940b21c536a90c9e0dae6.tar.gz nextcloud-server-6bd0b88f33ce52170cc940b21c536a90c9e0dae6.zip |
Adapt encryption test to change in generateHeader
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps/encryption')
-rw-r--r-- | apps/encryption/tests/Crypto/CryptTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/encryption/tests/Crypto/CryptTest.php b/apps/encryption/tests/Crypto/CryptTest.php index dd41c67e8ad..0bb2c652d8b 100644 --- a/apps/encryption/tests/Crypto/CryptTest.php +++ b/apps/encryption/tests/Crypto/CryptTest.php @@ -137,7 +137,7 @@ class CryptTest extends TestCase { */ public function dataTestGenerateHeader() { return [ - [null, 'HBEGIN:cipher:AES-128-CFB:keyFormat:hash:encoding:binary:HEND'], + [null, 'HBEGIN:cipher:AES-128-CFB:keyFormat:hash2:encoding:binary:HEND'], ['password', 'HBEGIN:cipher:AES-128-CFB:keyFormat:password:encoding:binary:HEND'], ['hash', 'HBEGIN:cipher:AES-128-CFB:keyFormat:hash:encoding:binary:HEND'] ]; |