mirror of
https://github.com/bitwarden/browser
synced 2026-01-06 18:43:25 +00:00
refactor crypto service to use crypto functions
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
import { SymmetricCryptoKey } from './symmetricCryptoKey';
|
||||
|
||||
export class EncryptedObject {
|
||||
iv: Uint8Array;
|
||||
ct: Uint8Array;
|
||||
mac: Uint8Array;
|
||||
iv: ArrayBuffer;
|
||||
ct: ArrayBuffer;
|
||||
mac: ArrayBuffer;
|
||||
key: SymmetricCryptoKey;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user