| Package | Description |
|---|---|
| org.kocakosm.pitaya.security |
| Modifier and Type | Field and Description |
|---|---|
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 Digest |
Digests.keccak224()
Returns a new Keccak-224
Digest instance. |
static Digest |
Digests.keccak256()
Returns a new Keccak-256
Digest instance. |
static Digest |
Digests.keccak384()
Returns a new Keccak-384
Digest instance. |
static Digest |
Digests.keccak512()
Returns a new Keccak-512
Digest instance. |
static Digest |
Digests.md2()
Returns a new MD2
Digest instance. |
static Digest |
Digests.md4()
Returns a new MD4
Digest instance. |
static Digest |
Digests.md5()
Returns a new MD5
Digest instance. |
Digest |
Digest.reset()
Resets the engine.
|
static Digest |
Digests.sha1()
Returns a new SHA1
Digest instance. |
static Digest |
Digests.sha256()
Returns a new SHA-256
Digest instance. |
static Digest |
Digests.sha512()
Returns a new SHA-512
Digest instance. |
Digest |
Digest.update(byte... input)
Updates the digest using the specified array of bytes.
|
Digest |
Digest.update(byte input)
Updates the digest using the given byte.
|
Digest |
Digest.update(byte[] input,
int off,
int len)
Updates the digest using the specified number of bytes from the given
array of bytes, starting at the specified offset.
|
| Modifier and Type | Method and Description |
|---|---|
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). |
Copyright © 2012–2015. All rights reserved.