|
Akka/Scala example source code file (Ticket1978ConfigSpec.scala)
The Ticket1978ConfigSpec.scala Akka example source code
package akka.remote
import akka.testkit._
import akka.actor._
import com.typesafe.config._
import scala.concurrent.duration._
import java.util.ArrayList
import akka.remote.transport.netty.SSLSettings
@org.junit.runner.RunWith(classOf[org.scalatest.junit.JUnitRunner])
class Ticket1978ConfigSpec extends AkkaSpec("""
akka.remote.netty.ssl.security {
random-number-generator = "AES128CounterSecureRNG"
}
""") with ImplicitSender with DefaultTimeout {
"SSL Remoting" must {
"be able to parse these extra Netty config elements" in {
val settings = new SSLSettings(system.settings.config.getConfig("akka.remote.netty.ssl.security"))
settings.SSLKeyStore should be(Some("keystore"))
settings.SSLKeyStorePassword should be(Some("changeme"))
settings.SSLKeyPassword should be(Some("changeme"))
settings.SSLTrustStore should be(Some("truststore"))
settings.SSLTrustStorePassword should be(Some("changeme"))
settings.SSLProtocol should be(Some("TLSv1"))
settings.SSLEnabledAlgorithms should be(Set("TLS_RSA_WITH_AES_128_CBC_SHA"))
settings.SSLRandomNumberGenerator should be(Some("AES128CounterSecureRNG"))
}
}
}
Other Akka source code examplesHere is a short list of links related to this Akka Ticket1978ConfigSpec.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.