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
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
I think I’ve found a small improvement I could contribute to <%= web_namespace %>.CoreComponents (installer/templates/phx_web/compo...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
ICal is a library for interacting with iCalendar data. It parses iCalendars into typed Elixir structs via ICal.from_ics, and can prepare ...
New
Latest Ash Threads
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #phoenix_html
- #elixirconf-us
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










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!