| Package | Description |
|---|---|
| org.kocakosm.pitaya.security |
| Modifier and Type | Field and Description |
|---|---|
static Algorithm<MAC> |
Algorithm.HMAC_KECCAK224
The HMAC-Keccak-224 MAC algorithm.
|
static Algorithm<MAC> |
Algorithm.HMAC_KECCAK256
The HMAC-Keccak-256 MAC algorithm.
|
static Algorithm<MAC> |
Algorithm.HMAC_KECCAK384
The HMAC-Keccak-384 MAC algorithm.
|
static Algorithm<MAC> |
Algorithm.HMAC_KECCAK512
The HMAC-Keccak-512 MAC algorithm.
|
static Algorithm<MAC> |
Algorithm.HMAC_MD2
The HMAC-MD2 MAC algorithm.
|
static Algorithm<MAC> |
Algorithm.HMAC_MD4
The HMAC-MD4 MAC algorithm.
|
static Algorithm<MAC> |
Algorithm.HMAC_MD5
The HMAC-MD5 MAC algorithm.
|
static Algorithm<MAC> |
Algorithm.HMAC_SHA1
The HMAC-SHA1 MAC algorithm.
|
static Algorithm<MAC> |
Algorithm.HMAC_SHA256
The HMAC-SHA-256 MAC algorithm.
|
static Algorithm<MAC> |
Algorithm.HMAC_SHA512
The HMAC-SHA-512 MAC algorithm.
|
static Algorithm<Digest> |
Algorithm.KECCAK224
The Keccak-224 digest algorithm.
|
static Algorithm<Digest> |
Algorithm.KECCAK256
The Keccak-256 digest algorithm.
|
static Algorithm<Digest> |
Algorithm.KECCAK384
The Keccak-384 digest algorithm.
|
static Algorithm<Digest> |
Algorithm.KECCAK512
The Keccak-512 digest algorithm.
|
static Algorithm<Digest> |
Algorithm.MD2
The MD2 digest algorithm.
|
static Algorithm<Digest> |
Algorithm.MD4
The MD4 digest algorithm.
|
static Algorithm<Digest> |
Algorithm.MD5
The MD5 digest algorithm.
|
static Algorithm<Digest> |
Algorithm.SHA1
The SHA1 digest algorithm.
|
static Algorithm<Digest> |
Algorithm.SHA256
The SHA-256 digest algorithm.
|
static Algorithm<Digest> |
Algorithm.SHA512
The SHA-512 digest algorithm.
|
| 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). |
Copyright © 2012–2015. All rights reserved.