I'm just new to Elixir.
After generating a hmac hash, I got a bitstring:
:crypto.hmac(:sha512, secret, data)
Sign: <<104, 155, 224, 193, 121, 129, 237, 103, 233, 236, 161, 130...>>
Now, I have to convert it to String, but don't know how exactly.
Any Elixir/erlang module to do this directly?