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-05-25 16:31:27 +0200 |
commit | 99bdb15398e33bc2212dc238dfe5c1f845d565c3 (patch) | |
tree | d1d74584a64033caa83394d97f992b546e244f92 /apps/encryption | |
parent | 2a6f347430f93a57e3ed194e9509745c690f522b (diff) | |
download | nextcloud-server-99bdb15398e33bc2212dc238dfe5c1f845d565c3.tar.gz nextcloud-server-99bdb15398e33bc2212dc238dfe5c1f845d565c3.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'] ]; |