vertx / io.vertx.kotlin.ext.auth

Package io.vertx.kotlin.ext.auth

Functions

jwtOptionsOf

fun jwtOptionsOf(algorithm: String? = null, audience: Iterable<String>? = null, audiences: Iterable<String>? = null, expiresInMinutes: Int? = null, expiresInSeconds: Int? = null, header: JsonObject? = null, ignoreExpiration: Boolean? = null, issuer: String? = null, leeway: Int? = null, noTimestamp: Boolean? = null, permissions: Iterable<String>? = null, scopes: Iterable<String>? = null, subject: String? = null): JWTOptions

keyStoreOptionsOf

fun keyStoreOptionsOf(password: String? = null, passwordProtection: Map<String, String>? = null, path: String? = null, type: String? = null, value: Buffer? = null): KeyStoreOptions

A function providing a DSL for building io.vertx.ext.auth.KeyStoreOptions objects.

pubSecKeyOptionsOf

fun pubSecKeyOptionsOf(algorithm: String? = null, buffer: String? = null, certificate: Boolean? = null, id: String? = null, publicKey: String? = null, secretKey: String? = null, symmetric: Boolean? = null): PubSecKeyOptions

A function providing a DSL for building io.vertx.ext.auth.PubSecKeyOptions objects.