diff options
| author | Alvaro Videla <videlalvaro@gmail.com> | 2015-09-17 16:53:41 +0300 |
|---|---|---|
| committer | Alvaro Videla <videlalvaro@gmail.com> | 2015-09-17 16:53:41 +0300 |
| commit | c6f2d4f3e9085cfa9f667570e30297e33d354f5f (patch) | |
| tree | ffee2d0abc262e582799c41ed7c4a74925fa4555 /include | |
| parent | e8446a21d053445aaa856e300960656dab9ada66 (diff) | |
| parent | 290861c1796f418ab74b688af860acef4125e375 (diff) | |
| download | rabbitmq-server-git-c6f2d4f3e9085cfa9f667570e30297e33d354f5f.tar.gz | |
Merge pull request #310 from rabbitmq/rabbitmq-server-270
Introduce per-user hashing functions, default to SHA-256
Diffstat (limited to 'include')
| -rw-r--r-- | include/rabbit.hrl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/rabbit.hrl b/include/rabbit.hrl index 6c3b131b34..2b6f68af54 100644 --- a/include/rabbit.hrl +++ b/include/rabbit.hrl @@ -27,7 +27,11 @@ -record(authz_socket_info, {sockname, peername}). %% Implementation for the internal auth backend --record(internal_user, {username, password_hash, tags}). +-record(internal_user, { + username, + password_hash, + tags, + hashing_algorithm}). -record(permission, {configure, write, read}). -record(user_vhost, {username, virtual_host}). -record(user_permission, {user_vhost, permission}). |
