kevinschweikert
Hi there,
is there a recommended way to encrypt/decrypt fields of a resource to the database?
I’ve used Cloak before, but i struggle to understand, how this would integrate into Ash.
It would be really nice if it worked like Cloak and with that I mean, that it encrypts/decrypts the data automatically when inserting/reading.
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
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
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
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
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
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
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
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
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #security










Showing Posts 1 to 7- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
zachdaniel
In
AshHqwe use cloak to encrypt data. We do it with a combination ofchanges andcalculations.For instance:
Then, in actions we write to those attributes using arguments:
We don’t write to the encrypted attributes directly to prevent double encryption.
This is what our encryption change looks like:
And we apply it on every action like so:
Then, we can decrypt it on demand using calculations:
And that calculation looks like this:
This was a very early addition to
AshHq. I’d love to see an encryption extension at some pointzachdaniel
We initially implemented this as an
Ash.Type, but it actually gets a bit strange further down the line. You can’tcast_inputthe value that you get back fromcast_inputand so you have to be careful not to accidentally double encrypt things. This way keeps things very clean.jimsynz
We also use this calculation based approach in a client app and it’s very handy because you have to explicitly ask for the decrypted value (via a
load) and due to our policy configuration you have to provide an actor which also gives us a place to add audit logging at a later date.kevinschweikert
Thank you @zachdaniel! That worked like a charm! I slowly begin to understand how Ash works
mudspot
@zachdaniel Hi! Is this still the recommended way of doing this in 2025?
I now have the following
actionsdefinition. I am hoping for something like that in thereadactionIs something like
before_actionpossible in thereadaction to handle the decryption?Of course, I’m using
calculationsat the moment.zachdaniel
Take a look at AshCloak: Home — ash_cloak v0.3.1
mudspot
Brilliant!
I managed to implement it with my custom Vault (without Cloak)
Thank you!