summaryrefslogtreecommitdiffstats
path: root/apps/encryption
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2023-05-25 16:31:27 +0200
committerCôme Chilliet <come.chilliet@nextcloud.com>2023-05-25 16:31:27 +0200
commit99bdb15398e33bc2212dc238dfe5c1f845d565c3 (patch)
treed1d74584a64033caa83394d97f992b546e244f92 /apps/encryption
parent2a6f347430f93a57e3ed194e9509745c690f522b (diff)
downloadnextcloud-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.php2
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']
];