Skip navigation links
C D F G I J S T 

C

clone() - Method in class io.vertx.ext.auth.jdbc.JDBCAuthOptions
Deprecated.
 
computeHash(String, String) - Method in interface io.vertx.ext.auth.jdbc.JDBCAuth
Compute the hashed password given the unhashed password and the salt without nonce The implementation relays to the JDBCHashStrategy provided.
computeHash(String, String, int) - Method in interface io.vertx.ext.auth.jdbc.JDBCAuth
Compute the hashed password given the unhashed password and the salt The implementation relays to the JDBCHashStrategy provided.
computeHash(String, String, int) - Method in interface io.vertx.ext.auth.jdbc.JDBCHashStrategy
Deprecated.
Compute the hashed password given the unhashed password and the salt
create(Vertx, JDBCClient) - Static method in interface io.vertx.ext.auth.jdbc.JDBCAuth
Create a JDBC auth provider implementation
createPBKDF2(Vertx) - Static method in interface io.vertx.ext.auth.jdbc.JDBCHashStrategy
Deprecated.
Implements a Hashing Strategy as per https://www.owasp.org/index.php/Password_Storage_Cheat_Sheet (2018-01-17).
createProvider(Vertx) - Method in class io.vertx.ext.auth.jdbc.JDBCAuthOptions
Deprecated.
 
createSHA512(Vertx) - Static method in interface io.vertx.ext.auth.jdbc.JDBCHashStrategy
Deprecated.
This is the current backwards compatible hashing implementation, new applications should prefer the PBKDF2 implementation, unless the tradeoff between security and CPU usage is an option.

D

DEFAULT_AUTHENTICATE_QUERY - Static variable in interface io.vertx.ext.auth.jdbc.JDBCAuth
The default query to be used for authentication
DEFAULT_PERMISSIONS_QUERY - Static variable in interface io.vertx.ext.auth.jdbc.JDBCAuth
The default query to retrieve all permissions for the role
DEFAULT_ROLE_PREFIX - Static variable in interface io.vertx.ext.auth.jdbc.JDBCAuth
The default role prefix
DEFAULT_ROLES_QUERY - Static variable in interface io.vertx.ext.auth.jdbc.JDBCAuth
The default query to retrieve all roles for the user

F

fromJson(Iterable<Map.Entry<String, Object>>, JDBCAuthOptions) - Static method in class io.vertx.ext.auth.jdbc.JDBCAuthOptionsConverter
 

G

generateSalt() - Method in interface io.vertx.ext.auth.jdbc.JDBCAuth
Compute a salt string.
generateSalt() - Method in interface io.vertx.ext.auth.jdbc.JDBCHashStrategy
Deprecated.
Compute a random salt.
getAuthenticationQuery() - Method in class io.vertx.ext.auth.jdbc.JDBCAuthOptions
Deprecated.
 
getConfig() - Method in class io.vertx.ext.auth.jdbc.JDBCAuthOptions
Deprecated.
 
getDatasourceName() - Method in class io.vertx.ext.auth.jdbc.JDBCAuthOptions
Deprecated.
 
getHashedStoredPwd(JsonArray) - Method in interface io.vertx.ext.auth.jdbc.JDBCHashStrategy
Deprecated.
Retrieve the hashed password from the result of the authentication query
getPermissionsQuery() - Method in class io.vertx.ext.auth.jdbc.JDBCAuthOptions
Deprecated.
 
getRolesPrefix() - Method in class io.vertx.ext.auth.jdbc.JDBCAuthOptions
Deprecated.
 
getRolesQuery() - Method in class io.vertx.ext.auth.jdbc.JDBCAuthOptions
Deprecated.
 
getSalt(JsonArray) - Method in interface io.vertx.ext.auth.jdbc.JDBCHashStrategy
Deprecated.
Retrieve the salt from the result of the authentication query

I

io.vertx.ext.auth.jdbc - package io.vertx.ext.auth.jdbc
 
isEqual(String, String) - Static method in interface io.vertx.ext.auth.jdbc.JDBCHashStrategy
Deprecated.
Time constant string comparision to avoid timming attacks.
isShared() - Method in class io.vertx.ext.auth.jdbc.JDBCAuthOptions
Deprecated.
 

J

JDBCAuth - Interface in io.vertx.ext.auth.jdbc
Factory interface for creating AuthProvider instances that use the Vert.x JDBC client.
JDBCAuthOptions - Class in io.vertx.ext.auth.jdbc
Deprecated.
JDBCAuthOptions() - Constructor for class io.vertx.ext.auth.jdbc.JDBCAuthOptions
Deprecated.
 
JDBCAuthOptions(JDBCAuthOptions) - Constructor for class io.vertx.ext.auth.jdbc.JDBCAuthOptions
Deprecated.
 
JDBCAuthOptions(JsonObject) - Constructor for class io.vertx.ext.auth.jdbc.JDBCAuthOptions
Deprecated.
 
JDBCAuthOptionsConverter - Class in io.vertx.ext.auth.jdbc
Converter for JDBCAuthOptions.
JDBCAuthOptionsConverter() - Constructor for class io.vertx.ext.auth.jdbc.JDBCAuthOptionsConverter
 
JDBCHashStrategy - Interface in io.vertx.ext.auth.jdbc
Deprecated.

S

setAuthenticationQuery(String) - Method in interface io.vertx.ext.auth.jdbc.JDBCAuth
Set the authentication query to use.
setAuthenticationQuery(String) - Method in class io.vertx.ext.auth.jdbc.JDBCAuthOptions
Deprecated.
Set the authentication query to use.
setConfig(JsonObject) - Method in class io.vertx.ext.auth.jdbc.JDBCAuthOptions
Deprecated.
The configuration of the JDBC client: refer to the Vert.x JDBC Client configuration.
setDatasourceName(String) - Method in class io.vertx.ext.auth.jdbc.JDBCAuthOptions
Deprecated.
Set the data source name to use, only use in shared mode.
setHashStrategy(JDBCHashStrategy) - Method in interface io.vertx.ext.auth.jdbc.JDBCAuth
Set the hash strategy to use.
setNonces(JsonArray) - Method in interface io.vertx.ext.auth.jdbc.JDBCAuth
Provide a application configuration level on hash nonce's as a ordered list of nonces where each position corresponds to a version.
setNonces(JsonArray) - Method in interface io.vertx.ext.auth.jdbc.JDBCHashStrategy
Deprecated.
Sets a ordered list of nonces where each position corresponds to a version.
setPermissionsQuery(String) - Method in interface io.vertx.ext.auth.jdbc.JDBCAuth
Set the permissions query to use.
setPermissionsQuery(String) - Method in class io.vertx.ext.auth.jdbc.JDBCAuthOptions
Deprecated.
Set the permissions query to use.
setRolePrefix(String) - Method in interface io.vertx.ext.auth.jdbc.JDBCAuth
Set the role prefix to distinguish from permissions when checking for isPermitted requests.
setRolesPrefix(String) - Method in class io.vertx.ext.auth.jdbc.JDBCAuthOptions
Deprecated.
Set the role prefix to distinguish from permissions when checking for isPermitted requests.
setRolesQuery(String) - Method in interface io.vertx.ext.auth.jdbc.JDBCAuth
Set the roles query to use.
setRolesQuery(String) - Method in class io.vertx.ext.auth.jdbc.JDBCAuthOptions
Deprecated.
Set the roles query to use.
setShared(boolean) - Method in class io.vertx.ext.auth.jdbc.JDBCAuthOptions
Deprecated.
Set whether the JDBC client is shared or non shared.

T

toJson(JDBCAuthOptions, JsonObject) - Static method in class io.vertx.ext.auth.jdbc.JDBCAuthOptionsConverter
 
toJson(JDBCAuthOptions, Map<String, Object>) - Static method in class io.vertx.ext.auth.jdbc.JDBCAuthOptionsConverter
 
C D F G I J S T 
Skip navigation links

Copyright © 2021 Eclipse. All rights reserved.