Exact Coset Sampling for Quantum Lattice Algorithms
Yifan Zhang just published a [manuscript](https://arxiv.org/pdf/2509.12341) claiming to have fixed the bug on Yiley Chen's quantum algorithm for LWE.
Yifan Zhang just published a [manuscript](https://arxiv.org/pdf/2509.12341) claiming to have fixed the bug on Yiley Chen's quantum algorithm for LWE.
Have a nice day! import mpmath as mp mp.mp.dps = 50 def fractional_sqrt(x: mp.mpf) -> mp.mpf: r = mp.sqrt(x) return r - mp.floor(r) def sha256_frac_to_u32_hex(frac: mp.mpf) -> str: val = int(mp.floor(frac * (1 << 32))) return f"0x{val:08x}" # First 8 …
Hi all, as part of my PhD, I am currently developing a QRNG with Toeplitz hashing as the extractor. I would gladly provide all the details, but I am currently looking to get these results published and the field is …
In a previous post I asked for tips on auditing crypto software on my spare time (https://www.reddit.com/r/crypto/comments/1myz2il/tips\_on\_auditing\_cryptographic\_source\_code/) I am still doing CryptoPals in preparation for auditing GNUPG. I am now considering a career in auditing / attacking cryptographic software. Aside …
Hello I am a Bit of a Beginner when it come to this field of study I am a Student that is Studying IT and I want to get my Hand wet a bit with This Field What would be …
[](https://www.reddit.com/r/codes/?f=flair_name%3A%22Unsolved%22) I’m stuck on a [practice cryptography challenge](https://ctf.cgii.gob.bo/). I’ve tried modifying rotations, brute-forcing, and analyzing the permutation structure, but I’m not getting closer to the hash. Has anyone tackled something like this before or can suggest resources/methods I should look …