Skip to main content
The 2026 Annual Developer Survey is live— take the Survey today!.

Questions tagged [hash]

A cryptographic hash algorithm is a function which takes a variable size input and produces a fixed size output. The algorithm makes it difficult to find two inputs with the same output or reconstruct the input from the output.

Question list filters

Filter by
Sorted by
Tagged with
Filter by Employee ID
Score of 1
2 answers
96 views

We are building the shielded pool of a post-quantum transaction layer. A note is committed as $c_m = H(v \parallel r)$ (value $v$, trapdoor $r$), commitments accumulate in a Merkle tree, and to spend ...
Score of 1
1 answer
115 views

I am designing a verifiable computation protocol where a prover multiplies two large matrices $A$ and $B$, resulting in $C$. To verify $AB = C$ without recomputing in $O(n^3)$ time, I am using ...
Score of 1
0 answers
81 views

I've designed an experimental stream cipher called LabyX built around one core idea I haven't found in the published literature: The keystream is larger than the plaintext, and the plaintext is hidden ...
Score of 2
0 answers
392 views

There is plenty of research into hash functions, KDFs, and PoW constructions designed to be GPU-unfriendly, but I'm looking for the opposite: A hash function designed to be fast on GPUs when performed ...
Score of 2
0 answers
129 views

Let $E$ be an elliptic curve over a finite field $\mathbb{F}_q$ for which $\mathcal{O}$ denotes the zero point. For simplicity, assume that the order $r$ of the group $E(\mathbb{F}_q)$ is prime. One ...
Score of 2
3 answers
322 views

In the definition of ECDSA, Signing and Verifying accept a message $M$ as an octet string of essentially arbitrary size. The only operation performed directly on $M$ is computing it's hash $H$, an ...
Score of 0
0 answers
112 views

I have hardware with like 1400kB RAM and would like to secure its firmware update. For that, my idea was to store the PQC MLDSA key, more like the hash of the key, on the OTP fuses. Then, I would ...
Score of 3
0 answers
135 views

I am looking for an example of an efficient cryptographic permutation $P$ whose author(s) explicitly claimed that $P$ was designed to be hermetic. Designers of the Sparkle permutation explicitly claim ...
Score of 1
0 answers
73 views

I'm designing a partitioned inference engine where each user is assigned to an isolated partition using: partition = sha256(api_key ∥ user_id) mod 64 The goals are: No shared cache between users No ...
Score of 3
1 answer
229 views

I was exploring why AWS uses HMAC-SHA256 for request signing (SigV4) rather than plain SHA-256, and specifically why the length extension vulnerability in raw SHA-256 can't be worked around at the ...
Score of 6
1 answer
928 views

I am trying to understand the practical implications of a hash function that is weak collision resistant, but not strong collision resistant. That is, an attacker can efficiently find some pair of ...
Score of 2
1 answer
89 views

When using a Davies–Meyer single-block-length compression function as a short input hash function: $$\mathsf{H}(x) = \mathsf{IV} \oplus \mathsf{Enc}(x, IV)$$ Is it safe to repurpose some part or all ...
Score of 4
2 answers
357 views

If performance is of no concern and the goal is to create an overkill hash function without resorting to altering the internals (e.g., rounds) of existing standards (e.g., SHA-2, SHA-3), would the ...
Score of 6
2 answers
688 views

Universal Hash: It involves uniform random sampling from a keyed function family. Therefore, it possesses collision resistance but does not require preimage resistance or PRF security. It is a ...
Score of 4
1 answer
142 views

The Keccak team introduced a SHAKE hash variant called TURBOSHAKE which is based on the original Keccak-F1600 permutation but with a reduced round count of 12 from 24. My question is : Can this ...

15 30 50 per page
1
2 3 4 5
209