@vertx/auth-jdbc
Advanced tools
Comparing version 3.7.1 to 3.8.0
@@ -23,2 +23,11 @@ /* | ||
/** | ||
* Factory interface for creating {@link io.vertx.ext.auth.AuthProvider} instances that use the Vert.x JDBC client. | ||
* | ||
* By default the hashing strategy is SHA-512. If you're already running in production this is backwards | ||
* compatible, however for new deployments or security upgrades it is recommended to use the PBKDF2 strategy | ||
* as it is the current OWASP recommendation for password storage. | ||
* @author <a href="http://tfox.org">Tim Fox</a> | ||
* | ||
*/ | ||
export abstract class JDBCAuth extends AuthProvider { | ||
@@ -139,2 +148,9 @@ /** | ||
/** | ||
* Determines how the hashing is computed in the implementation | ||
* | ||
* You can implement this to provide a different hashing strategy to the default. | ||
* @author <a href="http://tfox.org">Tim Fox</a> | ||
* | ||
*/ | ||
export abstract class JDBCHashStrategy { | ||
@@ -141,0 +157,0 @@ /** |
@@ -17,2 +17,7 @@ /* | ||
/** | ||
* Options configuring JDBC authentication. | ||
* @author <a href="mailto:julien@julienviet.com">Julien Viet</a> | ||
* | ||
*/ | ||
export class JDBCAuthOptions { | ||
@@ -19,0 +24,0 @@ |
{ | ||
"name" : "@vertx/auth-jdbc", | ||
"description" : "Generated Eclipse Vert.x bindings for 'vertx-auth-jdbc'", | ||
"version" : "3.7.1", | ||
"version" : "3.8.0", | ||
"license" : "Apache License 2.0", | ||
@@ -10,9 +10,9 @@ "public" : true, | ||
"artifactId" : "vertx-auth-jdbc", | ||
"version" : "3.7.1" | ||
"version" : "3.8.0" | ||
}, | ||
"dependencies" : { | ||
"@vertx/core" : "3.7.1", | ||
"@vertx/auth-common" : "3.7.1", | ||
"@vertx/jdbc" : "3.7.1", | ||
"@vertx/sql" : "3.7.1" | ||
"@vertx/core" : "3.8.0", | ||
"@vertx/auth-common" : "3.8.0", | ||
"@vertx/jdbc" : "3.8.0", | ||
"@vertx/sql" : "3.8.0" | ||
}, | ||
@@ -19,0 +19,0 @@ "main" : "index.js", |
16718
407
+ Added@vertx/auth-common@3.8.0(transitive)
+ Added@vertx/core@3.8.0(transitive)
+ Added@vertx/jdbc@3.8.0(transitive)
+ Added@vertx/sql@3.8.0(transitive)
- Removed@vertx/auth-common@3.7.1(transitive)
- Removed@vertx/core@3.7.1(transitive)
- Removed@vertx/jdbc@3.7.1(transitive)
- Removed@vertx/sql@3.7.1(transitive)
Updated@vertx/auth-common@3.8.0
Updated@vertx/core@3.8.0
Updated@vertx/jdbc@3.8.0
Updated@vertx/sql@3.8.0