@Generated(value="org.realityforge.webtack")
@JsType(isNative=true,
namespace="<global>",
name="Object")
public interface Pbkdf2Params
extends Algorithm
| Modifier and Type | Interface and Description |
|---|---|
static interface |
Pbkdf2Params.Builder
The Pbkdf2Params dictionary of the Web Crypto API represents the object that should be passed as the algorithm parameter into SubtleCrypto.deriveKey(), when using the PBKDF2 algorithm.
|
| Modifier and Type | Method and Description |
|---|---|
static Pbkdf2Params.Builder |
create(java.lang.String name,
BufferSource salt,
int iterations,
AlgorithmIdentifier hash) |
static Pbkdf2Params.Builder |
create(java.lang.String name,
BufferSource salt,
int iterations,
JsObject hash) |
static Pbkdf2Params.Builder |
create(java.lang.String name,
BufferSource salt,
int iterations,
java.lang.String hash) |
@JsNonNull AlgorithmIdentifier |
hash() |
int |
iterations() |
@JsNonNull BufferSource |
salt() |
void |
setHash(@JsNonNull AlgorithmIdentifier hash) |
default void |
setHash(JsObject hash) |
default void |
setHash(java.lang.String hash) |
void |
setIterations(int iterations) |
void |
setSalt(@JsNonNull BufferSource salt) |
@JsOverlay @Nonnull static Pbkdf2Params.Builder create(@Nonnull java.lang.String name, @Nonnull BufferSource salt, int iterations, @Nonnull AlgorithmIdentifier hash)
@JsOverlay @Nonnull static Pbkdf2Params.Builder create(@Nonnull java.lang.String name, @Nonnull BufferSource salt, int iterations, @Nonnull JsObject hash)
@JsOverlay @Nonnull static Pbkdf2Params.Builder create(@Nonnull java.lang.String name, @Nonnull BufferSource salt, int iterations, @Nonnull java.lang.String hash)
@JsProperty(name="salt") @JsNonNull BufferSource salt()
@JsProperty void setSalt(@JsNonNull BufferSource salt)
@JsProperty(name="iterations") int iterations()
@JsProperty void setIterations(int iterations)
@JsProperty(name="hash") @JsNonNull AlgorithmIdentifier hash()
@JsProperty void setHash(@JsNonNull AlgorithmIdentifier hash)
@JsOverlay
default void setHash(@Nonnull
JsObject hash)
@JsOverlay
default void setHash(@Nonnull
java.lang.String hash)