All files / src/crypto-extras/crypto-aes create-cipher.ts

87.5% Statements 7/8
50% Branches 1/2
100% Functions 1/1
87.5% Lines 7/8

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 1442x 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);
  }
}