mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 02:03:39 +00:00
* Add logging to decryption routines * Fix case of uknown encryption type * Add decryption context to log where failures occur * Update log message * Fix linting * Add more context logs * Add more fine grained logging * Update log message * Fix tests
39 lines
1.8 KiB
TypeScript
39 lines
1.8 KiB
TypeScript
import { Decryptable } from "../interfaces/decryptable.interface";
|
|
import { Encrypted } from "../interfaces/encrypted";
|
|
import { InitializerMetadata } from "../interfaces/initializer-metadata.interface";
|
|
import { EncArrayBuffer } from "../models/domain/enc-array-buffer";
|
|
import { EncString } from "../models/domain/enc-string";
|
|
import { SymmetricCryptoKey } from "../models/domain/symmetric-crypto-key";
|
|
|
|
export abstract class EncryptService {
|
|
abstract encrypt(plainValue: string | Uint8Array, key: SymmetricCryptoKey): Promise<EncString>;
|
|
abstract encryptToBytes(plainValue: Uint8Array, key: SymmetricCryptoKey): Promise<EncArrayBuffer>;
|
|
abstract decryptToUtf8(
|
|
encString: EncString,
|
|
key: SymmetricCryptoKey,
|
|
decryptContext?: string,
|
|
): Promise<string>;
|
|
abstract decryptToBytes(encThing: Encrypted, key: SymmetricCryptoKey): Promise<Uint8Array>;
|
|
abstract rsaEncrypt(data: Uint8Array, publicKey: Uint8Array): Promise<EncString>;
|
|
abstract rsaDecrypt(data: EncString, privateKey: Uint8Array): Promise<Uint8Array>;
|
|
abstract resolveLegacyKey(key: SymmetricCryptoKey, encThing: Encrypted): SymmetricCryptoKey;
|
|
/**
|
|
* @deprecated Replaced by BulkEncryptService, remove once the feature is tested and the featureflag PM-4154-multi-worker-encryption-service is removed
|
|
* @param items The items to decrypt
|
|
* @param key The key to decrypt the items with
|
|
*/
|
|
abstract decryptItems<T extends InitializerMetadata>(
|
|
items: Decryptable<T>[],
|
|
key: SymmetricCryptoKey,
|
|
): Promise<T[]>;
|
|
/**
|
|
* Generates a base64-encoded hash of the given value
|
|
* @param value The value to hash
|
|
* @param algorithm The hashing algorithm to use
|
|
*/
|
|
abstract hash(
|
|
value: string | Uint8Array,
|
|
algorithm: "sha1" | "sha256" | "sha512",
|
|
): Promise<string>;
|
|
}
|