mirror of
https://github.com/bitwarden/clients.git
synced 2026-07-10 21:03:56 +08:00
157 lines
6.5 KiB
TypeScript
157 lines
6.5 KiB
TypeScript
import * as forge from 'node-forge';
|
|
|
|
import { CryptoFunctionService } from '../abstractions/cryptoFunction.service';
|
|
import { PlatformUtilsService } from '../abstractions/platformUtils.service';
|
|
|
|
import { Utils } from '../misc/utils';
|
|
|
|
export class WebCryptoFunctionService implements CryptoFunctionService {
|
|
private crypto: Crypto;
|
|
private subtle: SubtleCrypto;
|
|
private isEdge: boolean;
|
|
|
|
constructor(private win: Window, private platformUtilsService: PlatformUtilsService) {
|
|
this.crypto = win.crypto;
|
|
this.subtle = win.crypto.subtle;
|
|
this.isEdge = platformUtilsService.isEdge();
|
|
}
|
|
|
|
async pbkdf2(password: string | ArrayBuffer, salt: string | ArrayBuffer, algorithm: 'sha256' | 'sha512',
|
|
iterations: number): Promise<ArrayBuffer> {
|
|
if (this.isEdge) {
|
|
const forgeLen = algorithm === 'sha256' ? 32 : 64;
|
|
const passwordBytes = this.toByteString(password);
|
|
const saltBytes = this.toByteString(salt);
|
|
const derivedKeyBytes = (forge as any).pbkdf2(passwordBytes, saltBytes, iterations, forgeLen, algorithm);
|
|
return Utils.fromByteStringToArray(derivedKeyBytes).buffer;
|
|
}
|
|
|
|
const wcLen = algorithm === 'sha256' ? 256 : 512;
|
|
const passwordBuf = this.toBuf(password);
|
|
const saltBuf = this.toBuf(salt);
|
|
|
|
const pbkdf2Params: Pbkdf2Params = {
|
|
name: 'PBKDF2',
|
|
salt: saltBuf,
|
|
iterations: iterations,
|
|
hash: { name: this.toWebCryptoAlgorithm(algorithm) },
|
|
};
|
|
|
|
const impKey = await this.subtle.importKey('raw', passwordBuf, { name: 'PBKDF2' }, false, ['deriveBits']);
|
|
return await this.subtle.deriveBits(pbkdf2Params, impKey, wcLen);
|
|
}
|
|
|
|
async hash(value: string | ArrayBuffer, algorithm: 'sha1' | 'sha256' | 'sha512'): Promise<ArrayBuffer> {
|
|
if (this.isEdge) {
|
|
let md: forge.md.MessageDigest;
|
|
if (algorithm === 'sha1') {
|
|
md = forge.md.sha1.create();
|
|
} else if (algorithm === 'sha256') {
|
|
md = forge.md.sha256.create();
|
|
} else {
|
|
md = (forge as any).md.sha512.create();
|
|
}
|
|
|
|
const valueBytes = this.toByteString(value);
|
|
md.update(valueBytes, 'raw');
|
|
return Utils.fromByteStringToArray(md.digest().data).buffer;
|
|
}
|
|
|
|
const valueBuf = this.toBuf(value);
|
|
return await this.subtle.digest({ name: this.toWebCryptoAlgorithm(algorithm) }, valueBuf);
|
|
}
|
|
|
|
async hmac(value: ArrayBuffer, key: ArrayBuffer, algorithm: 'sha1' | 'sha256' | 'sha512'): Promise<ArrayBuffer> {
|
|
if (this.isEdge) {
|
|
const valueBytes = this.toByteString(value);
|
|
const keyBytes = this.toByteString(key);
|
|
const hmac = (forge as any).hmac.create();
|
|
hmac.start(algorithm, keyBytes);
|
|
hmac.update(valueBytes);
|
|
return Utils.fromByteStringToArray(hmac.digest().getBytes()).buffer;
|
|
}
|
|
|
|
const signingAlgorithm = {
|
|
name: 'HMAC',
|
|
hash: { name: this.toWebCryptoAlgorithm(algorithm) },
|
|
};
|
|
|
|
const impKey = await this.subtle.importKey('raw', key, signingAlgorithm, false, ['sign']);
|
|
return await this.subtle.sign(signingAlgorithm, impKey, value);
|
|
}
|
|
|
|
async aesEncrypt(data: ArrayBuffer, iv: ArrayBuffer, key: ArrayBuffer): Promise<ArrayBuffer> {
|
|
const impKey = await this.subtle.importKey('raw', key, { name: 'AES-CBC' }, false, ['encrypt']);
|
|
return await this.subtle.encrypt({ name: 'AES-CBC', iv: iv }, impKey, data);
|
|
}
|
|
|
|
async aesDecryptSmall(data: ArrayBuffer, iv: ArrayBuffer, key: ArrayBuffer): Promise<ArrayBuffer> {
|
|
const dataBytes = this.toByteString(data);
|
|
const ivBytes = this.toByteString(iv);
|
|
const keyBytes = this.toByteString(key);
|
|
const dataBuffer = (forge as any).util.createBuffer(dataBytes);
|
|
const decipher = (forge as any).cipher.createDecipher('AES-CBC', keyBytes);
|
|
decipher.start({ iv: ivBytes });
|
|
decipher.update(dataBuffer);
|
|
decipher.finish();
|
|
return Utils.fromByteStringToArray(decipher.output.getBytes()).buffer;
|
|
}
|
|
|
|
async aesDecryptLarge(data: ArrayBuffer, iv: ArrayBuffer, key: ArrayBuffer): Promise<ArrayBuffer> {
|
|
const impKey = await this.subtle.importKey('raw', key, { name: 'AES-CBC' }, false, ['decrypt']);
|
|
return await this.subtle.decrypt({ name: 'AES-CBC', iv: iv }, impKey, data);
|
|
}
|
|
|
|
async rsaEncrypt(data: ArrayBuffer, publicKey: ArrayBuffer, algorithm: 'sha1' | 'sha256'): Promise<ArrayBuffer> {
|
|
// Note: Edge browser requires that we specify name and hash for both key import and decrypt.
|
|
// We cannot use the proper types here.
|
|
const rsaParams = {
|
|
name: 'RSA-OAEP',
|
|
hash: { name: this.toWebCryptoAlgorithm(algorithm) },
|
|
};
|
|
const impKey = await this.subtle.importKey('spki', publicKey, rsaParams, false, ['encrypt']);
|
|
return await this.subtle.encrypt(rsaParams, impKey, data);
|
|
}
|
|
|
|
async rsaDecrypt(data: ArrayBuffer, privateKey: ArrayBuffer, algorithm: 'sha1' | 'sha256'): Promise<ArrayBuffer> {
|
|
// Note: Edge browser requires that we specify name and hash for both key import and decrypt.
|
|
// We cannot use the proper types here.
|
|
const rsaParams = {
|
|
name: 'RSA-OAEP',
|
|
hash: { name: this.toWebCryptoAlgorithm(algorithm) },
|
|
};
|
|
const impKey = await this.subtle.importKey('pkcs8', privateKey, rsaParams, false, ['decrypt']);
|
|
return await this.subtle.decrypt(rsaParams, impKey, data);
|
|
}
|
|
|
|
randomBytes(length: number): Promise<ArrayBuffer> {
|
|
const arr = new Uint8Array(length);
|
|
this.crypto.getRandomValues(arr);
|
|
return Promise.resolve(arr.buffer);
|
|
}
|
|
|
|
private toBuf(value: string | ArrayBuffer): ArrayBuffer {
|
|
let buf: ArrayBuffer;
|
|
if (typeof (value) === 'string') {
|
|
buf = Utils.fromUtf8ToArray(value).buffer;
|
|
} else {
|
|
buf = value;
|
|
}
|
|
return buf;
|
|
}
|
|
|
|
private toByteString(value: string | ArrayBuffer): string {
|
|
let bytes: string;
|
|
if (typeof (value) === 'string') {
|
|
bytes = forge.util.encodeUtf8(value);
|
|
} else {
|
|
bytes = Utils.fromBufferToByteString(value);
|
|
}
|
|
return bytes;
|
|
}
|
|
|
|
private toWebCryptoAlgorithm(algorithm: 'sha1' | 'sha256' | 'sha512'): string {
|
|
return algorithm === 'sha1' ? 'SHA-1' : algorithm === 'sha256' ? 'SHA-256' : 'SHA-512';
|
|
}
|
|
}
|