Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 42x 42x 42x 42x 59x 59x 59x | import { WebCryptoAesCipher } from './web';
import { NodeCryptoAesCipher } from './node';
import type { AesCipher } from './types';
import { getCryptoLib } from './get-crypto';
export async function createCipher(): Promise<AesCipher> {
const cryptoLib = await getCryptoLib();
Iif (cryptoLib.name === 'webCrypto') {
return new WebCryptoAesCipher(cryptoLib.lib);
} else {
return new NodeCryptoAesCipher(cryptoLib.lib.createCipheriv, cryptoLib.lib.createDecipheriv);
}
}
|