|
Akka/Scala example source code file (AES256CounterInetRNG.scala)
The AES256CounterInetRNG.scala Akka example source code/** * Copyright (C) 2009-2014 Typesafe Inc. <http://www.typesafe.com> */ package akka.remote.security.provider import org.uncommons.maths.random.{ AESCounterRNG } import SeedSize.Seed256 /** * 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) */ class AES256CounterInetRNG extends java.security.SecureRandomSpi { private val rng = new AESCounterRNG(engineGenerateSeed(Seed256)) /** * This is managed internally by AESCounterRNG */ override protected def engineSetSeed(seed: Array[Byte]): Unit = () /** * Generates a user-specified number of random bytes. * * @param bytes the array to be filled in with random bytes. */ override protected def engineNextBytes(bytes: Array[Byte]): Unit = rng.nextBytes(bytes) /** * Unused method * Returns the given number of seed bytes. This call may be used to * seed other random number generators. * * @param numBytes the number of seed bytes to generate. * @return the seed bytes. */ override protected def engineGenerateSeed(numBytes: Int): Array[Byte] = InternetSeedGenerator.getInstance.generateSeed(numBytes) } Other Akka source code examplesHere is a short list of links related to this Akka AES256CounterInetRNG.scala source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.