TLSLibrary alternatives and similar libraries
Based on the "Misc" category.
Alternatively, view TLSLibrary alternatives based on common mentions on social networks and blogs.
-
jclasslib
jclasslib bytecode editor is a tool that visualizes all aspects of compiled Java class files and the contained bytecode. -
kotlin-logging
Lightweight Multiplatform logging framework for Kotlin. A convenient and performant logging facade. -
lingua
The most accurate natural language detection library for Java and the JVM, suitable for long and short text alike -
Kotlift
DISCONTINUED. Kotlift is the first source-to-source language transpiler from Kotlin to Swift -
Humanizer.jvm
Humanizer.jvm meets all your jvm needs for manipulating and displaying strings, enums, dates, times, timespans, numbers and quantities. -
klutter
A mix of random small libraries for Kotlin, the smallest reside here until big enough for their own repository. -
kassava
This library provides some useful kotlin extension functions for implementing toString(), hashCode() and equals() without all of the boilerplate. -
solr-undertow
Solr / SolrCloud running in high performance server - tiny, fast startup, simple to configure, easy deployment without an application server. -
SimpleDNN
SimpleDNN is a machine learning lightweight open-source library written in Kotlin designed to support relevant neural network architectures in natural language processing tasks -
kasechange
๐ซ๐๐ข๐ ฟ Multiplatform Kotlin library to convert strings between various case formats including Camel Case, Snake Case, Pascal Case and Kebab Case -
kotlin-futures
A collections of extension functions to make the JVM Future, CompletableFuture, ListenableFuture API more functional and Kotlin like. -
scientist
DISCONTINUED. A kotlin library for refactoring code. Port of GitHub's scientist. [GET https://api.github.com/repos/spoptchev/scientist: 404 - Not Found // See: https://docs.github.com/rest/repos/repos#get-a-repository] -
PrimeCalendar
PrimeCalendar provides all of the java.util.Calendar functionalities for Persian, Hijri, and ... dates. It is also possible to convert dates to each other. -
log4k
Lightweight logging library for Kotlin/Multiplatform. Supports Android, iOS, JavaScript and plain JVM environments.
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of TLSLibrary or a related project?
README
SeKurity - Kotlin powered TLS library
This library provides an API for creating basic SSL/TLS connections with standard Java Secure Socket Extension, JSSE. The Library is implemented in Kotlin. The Kotlin API is implemented with a "type-safe builder" approach, which is quite popular in the Groovy community.
Disclaimer: The current Version is not optimized for Java yet.
Motivation
If you also find it hard to use the complex JSSE structure to create your SSL sockets, which also generates lots of boilerplate when used directly, this tool is what you've been looking for.
The library provides means for creating SSLSocketFactories
that can be used for most use cases where TLS/SSL connections are required. It's also supposed to provide usage examples and even sample implementations like SSL enabled servers, Apache HTTP Clients and others, which you can use directly in your application.
Demo of Kotlin DSL
In the following you can see some basic examples of using the Kotlin DSL for setting up ssl-(server)-socket-factories.
Creating a Client Socket for Mutual Authentication (Client Keystore must be provided):
val fac = createSocketFactory {
keyManager {
open("certsandstores/clientkeystore", "jks") withPass "123456"
}
trustManager {
open("certsandstores/myTruststore", "jks") withPass "123456"
}
sockets {
cipherSuites = listOf("TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256", "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384",
"TLS_DHE_RSA_WITH_AES_128_CBC_SHA", "TLS_DHE_RSA_WITH_AES_256_CBC_SHA")
timeout = 10_000
}
}
val socket = fac.createSocket("192.168.3.10", 443)
Creating a Server Socket with simple keystore (no Client Auth required)
val fac = createServerSocketFactory {
keyManager {
open("certsandstores/clientkeystore", "jks") withPass "123456"
}
}
val accept = fac.createServerSocket(443).accept()
}
Getting Started
In your Gradle build, simply include the following repo as well as dependency:
maven {
setUrl("https://dl.bintray.com/s1m0nw1/SeKurity/")
}
compile("de.swirtz:sekurity:0.0.x")
Basics
You can read about TLS and Keystores [here](crypto.md).