r

rouplex-niossl-parent

Rouplex-Niossl is a java SPI (service provider interface) for secure (SSL/TLS), selectable, socket channels. Some of the classes in the java.nio.channels package have been extended by secure counterparts that can be used side by side, or replace existing instances of the plain implementations. This package contains just the entry point calls for instantiating such instances, as well as a non-functional, default implementation. For a concrete implementation of these classes you can take a look at Rouplex-Niossl-Spi, which would be included as a separate dependency to your applications. More specifically this library defines SSLSocketChannel class to inherit from SocketChannel, SSLServerSocketChannel to inherit from ServerSocketChannel and SSLSelector to inherit from SSLSelector. One or more instances of SSLSocketChannel can be registered with an (or more) instance of SSLSelector to be selected upon, with the same exact semantics a SocketChannel would expect from registering with a Selector. Further, a mixture of SocketChannels and SSLSocketChannels can be registered simultaneously with an SSLSelector. The secure counterparts abide to the same API and semantics defined for plain channels at https://docs.oracle.com/javase/8/docs/api/java/nio/channels/package-summary.html. This way, the existing products can be easily updated to provide secure communication and new products can achieve security of data in transit by using the already proven and excellent patterns for communication such as nio.
https://github.com/rouplex/rouplex-niossl
FreeBSD
Andi Mullaraj
Files download
File Operation
rouplex-niossl-parent-1.0.3.pom download
Apache Maven
<dependency>
  <groupId>org.rouplex</groupId>
  <artifactId>rouplex-niossl-parent</artifactId>
  <version>1.0.3</version>
  <type>pom</type>
</dependency>
Gradle Groovy
implementation 'org.rouplex:rouplex-niossl-parent:1.0.3'
Gradle Kotlin
implementation("org.rouplex:rouplex-niossl-parent:1.0.3")
Scala SBT
libraryDependencies += "org.rouplex" % "rouplex-niossl-parent" % "1.0.3"
Groovy Grape
@Grapes(
  @Grab(group='org.rouplex', module='rouplex-niossl-parent', version='1.0.3')
)
Apache Ivy
<dependency org="org.rouplex" name="rouplex-niossl-parent" rev="1.0.3" />
Leiningen
[org.rouplex/rouplex-niossl-parent "1.0.3"]
Apache Buildr
'org.rouplex:rouplex-niossl-parent:jar:1.0.3'
Dependencies
The project has no third-party dependencies