Crowdhailer
Creator of Raxx
My current application needs secure tokens for password reset.
These tokens do not contain any state, the security model is that the bearer will use them to talk to the server and the server can look up the associated state.
Also ideally these tokens should be as short as possible.
Currently what I am doing is associating an id (32 bit integer) with a secret (128 bit).
The id and a masked version of the secret are stored in the database.
defp mask(secret) do
Base.url_encode64(:crypto.hash(:sha256, secret))
end
The token given to the user is a base64 url encoded string with both id and secret.
def serialize(id, secret) when id <= @maximum_id_value do
Base.url_encode64(<<id::32, 0::8, secret::binary>>)
end
Features:
- My server cannot generate the token so user can only download it at the time of generation
- I can generate a prefix (the first 6 characters come from the id) for a user which is helpful for managing the keys.
My Questions are:
- Is this secure?
- Are there any standards for this type of token?
- If no standards are there any libraries that do just this. I have found libraries that do more but I want just the token creation and serializing and parsing.
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #elixirconf-eu
- #metaprogramming
- #hex










Showing Posts 1 to 8- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
LostKobrakai
If you have associated state can you store the token there as well? If so I guess
:crypto.strong_rand_bytes(n)+ wherever hashing you prefer should be enough.hauleth
What will happen when I will change and ID in serialised token? IMHO this is the case where you could use JWT or PASETO tokens with user ID stored in signed manner.
Crowdhailer
That’s pretty much what I am doing but with an associated id. So that when a user revists there API page the get shown something like
tok_ABC32Q*******JWT tokens are just too long, for my usecase.
hauleth
Check out PASETO, I am also working on similar standard that will simply remove the requirement on the message to be encoded as JSON.
Crowdhailer
Interesting, might be useful for something else.
But probably anything with signed data is probably going to result in too long tokens. At the moment my tokens are 28 charachters long.
OvermindDL1
I’d just use a Phoenix.Token holding something small and useful and time limited.
Crowdhailer
As far as I am aware they still include data in the token? Which makes them too long
OvermindDL1
Database then yeah.