aligredo
Hello there,
I’m trying to generate a checksum using :crypto.hash/2, I want to hash the first 8 characters only of my string and get the result as a decimal value. More precisely I’m trying to generate the checksum using SHA1, in Javascript it would be something like that parseInt(sha1(str).substr(0, 8), 16); for a string “Hi?Hi.” it should be 174888039. Note the character “\x1f” between ? and H.
This is my code:
Integer.parse(:crypto.hash(:sha, String.slice("First Part" <> "\x1f" <> "Second Part", 0..8)), 16)
but it returns :error , any help with that?
Thanks in advance!
Trending in Questions
I having some trouble figuring out if I have set myself too strict of standards for my production server. Currently I can handle 75% of r...
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
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
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
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
A little off-topic, but I feel like people here have a good head on their shoulders.
I used to be quite good at making software. Was luc...
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
- #elixirconf-eu
- #api
- #forms
- #metaprogramming
- #hex










Showing Posts 1 to 7- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
hauleth
Ok, what exactly you are trying to achieve. Give us an example input and example output of what you want, maybe then it will be easier to understand what you want.
aligredo
I’m trying to generate a checksum for the first 8 characters of a string using SHA1, in Javascript it would be something like that
parseInt(sha1(str).substr(0, 8), 16);for a string “Hi?Hi.” it should be 174888039. Note the character “\x1f” between ? and H.hauleth
Your main problem is thinking that
2fd4e1c67a2d28fced849ee1bb76e7391b93eb12is SHA-1 output, it isn’t. Just check out what value does thecrypto:hash/2produce and work from there (hint, you can use pattern matching to generate integer from binary).aligredo
Hmmmm. As far as I understand (I might be wrong tho
) from :crypto.hash/2 documentation this is the message digest of SHA-1. what am I missing?
cmkarlsson
The digest is return as a
binaryrepresentation.So this binary representation must be converted to the integer you want. You are trying to use
Integer.parse(..,16)which requires a hex representation.So one option could be to convert the
binarytohexfirst and then parse to integer. Or perhaps it is possible to pattern-match out the integer directly from the binary hash as hauleth is hinting at.For example:
I don’t know if that gives the same result as:
but if it does it saves a few functions and are generally cleaner.
aligredo
it’s
Base.encode16().Thank you so much!
voltone
You can avoid the conversion to Hex:
Or: