import type { BaseDigestOptions, CiphertextFormat } from '../types'; export interface DigestOptions extends BaseDigestOptions { algorithm?: string; } export interface EncryptOptions { ciphertextFormat?: CiphertextFormat; } export interface DecryptOptions { ciphertextFormat?: CiphertextFormat; }