Package

akka.remote.security

provider

Permalink

package provider

Visibility
  1. Public
  2. All

Type Members

  1. class AES128CounterSecureRNG extends SecureRandomSpi

    Permalink

    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

  2. class AES256CounterSecureRNG extends SecureRandomSpi

    Permalink

    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

  3. final class InternetSeedGenerator extends SeedGenerator

    Permalink
  4. class AES128CounterInetRNG extends SecureRandomSpi

    Permalink

    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)

    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)

    Annotations
    @deprecated
    Deprecated

    (Since version 2.4) Use AES128CounterSecureRNG instead

  5. class AES256CounterInetRNG extends SecureRandomSpi

    Permalink

    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)

    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)

    Annotations
    @deprecated
    Deprecated

    (Since version 2.4) Use AES256CounterSecureRNG instead

Value Members

  1. object AkkaProvider extends Provider

    Permalink

    A provider that for AES128CounterRNGFast, a cryptographically secure random number generator through SecureRandom

Deprecated Value Members

  1. object InternetSeedGenerator

    Permalink

    INTERNAL API Seed generator that maintains multiple strategies for seed generation and will delegate to the best one available for the current operating environment.

    INTERNAL API Seed generator that maintains multiple strategies for seed generation and will delegate to the best one available for the current operating environment.

    Annotations
    @deprecated
    Deprecated

    (Since version 2.4) Use another seed generator instead

Ungrouped