Browse Source

Merge pull request #6723 from zmstone/docs-ensure-authn-schema-ns

docs: ensure authn schema ns for password-hash structs
Zaiming (Stone) Shi 4 years ago
parent
commit
0d86d41f95
1 changed files with 3 additions and 1 deletions
  1. 3 1
      apps/emqx_authn/src/emqx_authn_password_hashing.erl

+ 3 - 1
apps/emqx_authn/src/emqx_authn_password_hashing.erl

@@ -41,7 +41,8 @@
 -behaviour(hocon_schema).
 
 -export([roots/0,
-         fields/1]).
+         fields/1,
+         namespace/0]).
 
 -export([type_ro/1,
          type_rw/1]).
@@ -51,6 +52,7 @@
          hash/2,
          check_password/4]).
 
+namespace() -> "authn-hash".
 roots() -> [pbkdf2, bcrypt, bcrypt_rw, other_algorithms].
 
 fields(bcrypt_rw) ->