| Package | Description |
|---|---|
| org.kocakosm.pitaya.security |
| Modifier and Type | Method and Description |
|---|---|
static KDF |
KDFs.hkdf(Algorithm<MAC> mac,
byte[] info,
int dkLen)
Creates and returns a new immutable
KDF instance implementing
the HKDF algorithm (RFC 5869). |
static KDF |
KDFs.pbkdf1(Algorithm<Digest> digest,
int iterationCount,
int dkLen)
Creates and returns a new immutable
KDF instance implementing
the PBKDF1 algorithm (RFC 2898). |
static KDF |
KDFs.pbkdf2(Algorithm<MAC> mac,
int iterationCount,
int dkLen)
Creates and returns a new immutable
KDF instance implementing
the PBKDF2 algorithm (RFC 2898). |
static KDF |
KDFs.scrypt(int r,
int n,
int p,
int dkLen)
Creates and returns a new immutable
KDF instance implementing
the SCrypt algorithm as specified by the Internet Engineering Task
Force. |
Copyright © 2012–2015. All rights reserved.