react-native-quick-crypto 1.1.3 → 1.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -271,6 +271,10 @@ export type SubtleAlgorithm = {
271
271
  saltLength?: number;
272
272
  public?: CryptoKey;
273
273
  info?: BufferLike;
274
+ // AEAD / AES-CBC / AES-CTR parameters surfaced here so callers (e.g.
275
+ // Subtle.supports) can pass a single union without per-algorithm casts.
276
+ iv?: BufferLike;
277
+ counter?: BufferLike;
274
278
  // Argon2 parameters
275
279
  nonce?: BufferLike;
276
280
  parallelism?: number;
@@ -595,6 +599,7 @@ export type Operation =
595
599
  | 'decapsulateBits'
596
600
  | 'encapsulateKey'
597
601
  | 'decapsulateKey'
602
+ | 'digest'
598
603
  | 'get key length';
599
604
 
600
605
  export interface KeyPairOptions {