Class Summary |
AES128CounterInetRNG |
INTERNAL API
This class is a wrapper around the 128-bit AESCounterRNG algorithm provided by http://maths.uncommons.org/
It uses the default seed generator which uses one of the following 3 random seed sources:
Depending on availability: random.org, /dev/random, and SecureRandom (provided by Java)
The only method used by netty ssl is engineNextBytes(bytes) |
AES128CounterSecureRNG |
INTERNAL API
This class is a wrapper around the 128-bit AESCounterRNG algorithm provided by http://maths.uncommons.org/
The only method used by netty ssl is engineNextBytes(bytes)
This RNG is good to use to prevent startup delay when you don't have Internet access to random.org |
AES256CounterInetRNG |
INTERNAL API
This class is a wrapper around the 256-bit AESCounterRNG algorithm provided by http://maths.uncommons.org/
It uses the default seed generator which uses one of the following 3 random seed sources:
Depending on availability: random.org, /dev/random, and SecureRandom (provided by Java)
The only method used by netty ssl is engineNextBytes(bytes) |
AES256CounterSecureRNG |
INTERNAL API
This class is a wrapper around the 256-bit AESCounterRNG algorithm provided by http://maths.uncommons.org/
The only method used by netty ssl is engineNextBytes(bytes)
This RNG is good to use to prevent startup delay when you don't have Internet access to random.org |
AkkaProvider |
A provider that for AES128CounterRNGFast, a cryptographically secure random number generator through SecureRandom |
AkkaProvider$ |
A provider that for AES128CounterRNGFast, a cryptographically secure random number generator through SecureRandom |
InternetSeedGenerator |
|
InternetSeedGenerator$ |
INTERNAL API
Seed generator that maintains multiple strategies for seed
generation and will delegate to the best one available for the
current operating environment. |
SeedSize |
INTERNAL API
From AESCounterRNG API docs:
Valid values are 16 (128 bits), 24 (192 bits) and 32 (256 bits). |
SeedSize$ |
INTERNAL API
From AESCounterRNG API docs:
Valid values are 16 (128 bits), 24 (192 bits) and 32 (256 bits). |