Scoty
Hey, guys,
I am trying to write a simple module that prepares a valid URL link. The URL needs a checksum param passed. The checksum calculations is very simple: concat all the values of the passed params(key + value) add salt and hash it.
Here is the sample* code(lets ignore for the moment that I need some kind of ordered map, cause there is no guarantee that the map is iterated in the same order. ScRequest is a struct containing the secret_key and the hashish algorithm):
defp calculate_v4_checksum(sc_request, params) do
# this fails: str_to_hash = Enum.map(params, fn {k, v} -> Atom.to_string(k) <> v end) <> sc_request.secret_key
str_to_hash = Enum.map(params, fn {k, v} -> Atom.to_string(k) <> v end)
IO.puts (str_to_hash)
IO.puts (sc_request.secret_key)
# this fails: IO.puts (str_to_hash <> sc_request.secret_key)
# or this: :crypto.hash(sc_request.algorithm, str_to_hash <> sc_request.secret_key)
:crypto.hash(sc_request.algorithm, str_to_hash)
|> Base.encode16(case: :lower)
end
Why the concatenation of the salt(secret_key) fails with ArgumentError ? Currently I can only hash the concatenated params…
Trending in Chat/Questions
Other Trending Topics
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
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
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
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 4- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
NobbZ
Of course it does. All (well, most)
Enumfunctions return a list. You can not use<>on Lists.If I understand you correctly, you want this:
(untested)
Scoty
Thank you, NobbZ, that is exactly what I wanted.
Added just the fn keyword and the function now looks like this:
But back to my original question: why this fails(aren’t both values strings ?):
NobbZ
PS: You can simulate your ordered map roughly like this (and also do it single pipe):
NobbZ
As I already said in my first answer,
Enum.mapreturns a list, due to the function you passed into it, that was a list ofString.t, but a list of strings is not a string.<>does really only work for binaries (and therefore for strings as well).