Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fixup! Move to AES-256-GCM for openssl_seal/open
Signed-off-by: Roeland Jago Douma <[email protected]>
  • Loading branch information
rullzer authored and solracsf committed Jun 29, 2022
commit 905e6d8d8d5f474490922e062c2f014a31d05ed0
4 changes: 2 additions & 2 deletions apps/encryption/lib/Crypto/Crypt.php
Original file line number Diff line number Diff line change
Expand Up @@ -757,8 +757,8 @@ public function multiKeyEncrypt($plainContent, array $keyFiles) {
}

return [
'keys' => $mappedShareKeys . $iv,
'data' => $sealed
'keys' => $mappedShareKeys,
'data' => $sealed . $iv,
];
}
throw new MultiKeyEncryptException('multikeyencryption failed ' . openssl_error_string());
Expand Down