Interface SubtleCryptoDeriveKeyAlgorithm

interface SubtleCryptoDeriveKeyAlgorithm {
    $public?: CryptoKey;
    hash?: string | SubtleCryptoHashAlgorithm;
    info?: ArrayBuffer;
    iterations?: number;
    name: string;
    salt?: ArrayBuffer;
}

Properties

$public?: CryptoKey
info?: ArrayBuffer
iterations?: number
name: string
salt?: ArrayBuffer