Viewing profile — lambdafu
lambdafu
HN member- Joined
- Thu, Jan 18, 2018, 10:40 AM UTC
- HN karma
- 142
- Public activity
- 16 items
- HN profile
- View on Hacker News ↗
About lambdafu
Recent public activity
-
comment
Comment #46031154
I have the Widex SmartRIC 220, and would buy them again. They are comfortable, have musical audio quality (Widex works with musicians), very low latency (reducing comb filter effec…
-
comment
Comment #40045976
Actually, with currently common key sizes, ECC up to 384 bits will fall to QC before RSA with 1024 bits, because fewer bits means fewer qubits needed. The main disadvantage of RSA …
-
comment
Comment #40045875
For the attack all 60 signatures need a nonce that is special in this way. If for example only one out of the 60 is short, the attack fails in the lattice reduction step. The reaso…
-
comment
Comment #40045809
Caution here. If your modulus is too close to the maximum truncated value, there can be a bias in the upper bits, too. For example, if you reduce a number between 0 and 15 by the m…
-
comment
Comment #40045222
If the hosts are under your control, and never connect to untrusted hosts, then you are ok. The user authentication is encrypted, so the signatures are not visible to a man in the …
-
comment
Comment #40045192
We found it by investigating the security of SSH as part of a larger research program focussing on SSH, which also resulted in our publication of the Terrapin vulnerability. This p…
-
comment
Comment #38688974
No, because there may be other messages that are ignored, i.e. don't trigger a response message. Any such message can be used for injection. The details are implementation specific…
-
comment
Comment #38688941
Depends a bit on the MAC. CTR-EtM is technically vulnerable (i.e. cryptographically broken), but due to key stream desynchronization the attack will quickly lead to application err…
-
comment
Comment #38686549
ChaPoly was added in 2013, but the weird KEX is even older, dating back all the way to 1998 in SSHv2. And surprisingly, the attack only works with the "better" symmetric ciphers th…
-
comment
Comment #38685443
Thanks! <3 Also for the kind words.
-
comment
Comment #38684919
It's prefix truncation, though.
-
comment
Comment #16176393
NeoPG uses Botan, which is a crypto library written in C++. I recommend reading its source code and comparing it with, for example, libgcrypt.
-
comment
Comment #16176383
This is true. But it is a necessary first step and some refactoring has already been done. It's a long way. Many comments here are missing the main inspiration of using C++, which …
-
comment
Comment #16176218
Yes, I should document that. GPGME only exposes a high-level API, and application developers often want more control. For example, you can't inspect key material before importing i…
-
comment
Comment #16176197
You might want to check out https://sequoia-pgp.org - a new OpenPGP implementation written from scratch in Rust within the PEP project.
-
comment
Comment #16176178
Hi, I'm "this guy". Thanks for pointing out -fpermissive, which was needed during the conversion for the legacy code. Since then I fixed all the warnings, so I can remove the flag …