Skip to content

Commit

Permalink
All: Resolves #8657: Temporarily revert to AES-128 as encryption meth…
Browse files Browse the repository at this point in the history
…od due to severe performance issues
  • Loading branch information
laurent22 committed Aug 14, 2023
1 parent c6c2733 commit eca1afb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/lib/services/e2ee/EncryptionService.ts
Expand Up @@ -70,7 +70,7 @@ export default class EncryptionService {
// changed easily since the chunk size is incorporated into the encrypted data.
private chunkSize_ = 5000;
private decryptedMasterKeys_: Record<string, DecryptedMasterKey> = {};
public defaultEncryptionMethod_ = EncryptionMethod.SJCL1b; // public because used in tests
public defaultEncryptionMethod_ = EncryptionMethod.SJCL1a; // public because used in tests
private defaultMasterKeyEncryptionMethod_ = EncryptionMethod.SJCL4;

private headerTemplates_ = {
Expand Down

0 comments on commit eca1afb

Please sign in to comment.