menu

CryptoPbkdf2

import { CryptoPbkdf2 } from "destack:crypto/binding";

PBKDF2 derivation.

language/library/src/crypto/binding/kdf.ds:21:30
1export struct CryptoPbkdf2<'a> {2    digest: CryptoDigestAlgorithm;3    password: &'a readonly [uint8];4    salt: &'a readonly [uint8];5    iterations: uint32;6}

Members

digest: CryptoDigestAlgorithm

Digest algorithm.

password: &'a readonly [uint8]

Password bytes.

salt: &'a readonly [uint8]

Salt bytes.

iterations: uint32

Iteration count.