mirror of
https://github.com/bitwarden/jslib
synced 2026-01-10 20:43:15 +00:00
113 lines
4.2 KiB
TypeScript
113 lines
4.2 KiB
TypeScript
import * as forge from 'node-forge';
|
|
|
|
import { CryptoFunctionService } from '../abstractions/cryptoFunction.service';
|
|
import { PlatformUtilsService } from '../abstractions/platformUtils.service';
|
|
|
|
import { UtilsService } from '../services/utils.service';
|
|
|
|
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 len = algorithm === 'sha256' ? 32 : 64;
|
|
const passwordBytes = this.toForgeBytes(password);
|
|
const saltBytes = this.toForgeBytes(salt);
|
|
const derivedKeyBytes = (forge as any).pbkdf2(passwordBytes, saltBytes, iterations, len, algorithm);
|
|
return this.fromForgeBytesToBuf(derivedKeyBytes);
|
|
}
|
|
|
|
const len = algorithm === 'sha256' ? 256 : 512;
|
|
const passwordBuf = this.toBuf(password);
|
|
const saltBuf = this.toBuf(salt);
|
|
|
|
const alg: 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 window.crypto.subtle.deriveBits(alg, impKey, len);
|
|
}
|
|
|
|
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.toForgeBytes(value);
|
|
md.update(valueBytes, 'raw');
|
|
return this.fromForgeBytesToBuf(md.digest().data);
|
|
}
|
|
|
|
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.toForgeBytes(value);
|
|
const keyBytes = this.toForgeBytes(key);
|
|
const hmac = (forge as any).hmac.create();
|
|
hmac.start(algorithm, keyBytes);
|
|
hmac.update(valueBytes);
|
|
return this.fromForgeBytesToBuf(hmac.digest().getBytes());
|
|
}
|
|
|
|
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);
|
|
}
|
|
|
|
private toBuf(value: string | ArrayBuffer): ArrayBuffer {
|
|
let buf: ArrayBuffer;
|
|
if (typeof (value) === 'string') {
|
|
buf = UtilsService.fromUtf8ToArray(value).buffer;
|
|
} else {
|
|
buf = value;
|
|
}
|
|
return buf;
|
|
}
|
|
|
|
private toForgeBytes(value: string | ArrayBuffer): string {
|
|
let bytes: string;
|
|
if (typeof (value) === 'string') {
|
|
bytes = forge.util.encodeUtf8(value);
|
|
} else {
|
|
const value64 = UtilsService.fromBufferToB64(value);
|
|
bytes = forge.util.decode64(value64);
|
|
}
|
|
return bytes;
|
|
}
|
|
|
|
private fromForgeBytesToBuf(byteString: string): ArrayBuffer {
|
|
const b64 = forge.util.encode64(byteString);
|
|
return UtilsService.fromB64ToArray(b64).buffer;
|
|
}
|
|
|
|
private toWebCryptoAlgorithm(algorithm: 'sha1' | 'sha256' | 'sha512'): string {
|
|
return algorithm === 'sha1' ? 'SHA-1' : algorithm === 'sha256' ? 'SHA-256' : 'SHA-512';
|
|
}
|
|
}
|