-module(member, [Id, Username, Email, Name, PasswordHash, Key, Status]).
-define(SECRET_STRING, "Not telling secrets!").
-compile(export_all).

%% @doc Returns the session identifier.
session_identifier() ->
    mochihex:to_hex(erlang:md5(?SECRET_STRING ++ Id)).
