mirror of
https://github.com/bitwarden/browser
synced 2026-02-23 16:13:21 +00:00
* Remove AES128CBC-HMAC encryption * Increase test coverage * Refactor symmetric keys and increase test coverage * Re-add type 0 encryption * Fix ts strict warning * Re-add support for encrypt hmac-less aes * Add comment about inner() * Update comment * Deduplicate encryption type check * Undo test changes * Lift out encryption type check to before splitting by encryption type * Change null to undefined * Fix test
9 lines
185 B
TypeScript
9 lines
185 B
TypeScript
// FIXME: Update this file to be type safe and remove this and next line
|
|
// @ts-strict-ignore
|
|
|
|
export class EncryptedObject {
|
|
iv: Uint8Array;
|
|
data: Uint8Array;
|
|
mac: Uint8Array;
|
|
}
|