Viewing profile — KevinChasse
KevinChasse
HN member- Joined
- Fri, Feb 06, 2026, 4:25 PM UTC
- HN karma
- 8
- Public activity
- 17 items
- HN profile
- View on Hacker News ↗
About KevinChasse
Recent public activity
-
comment
Comment #47444004
[dead]
- story
-
comment
Comment #47031739
I built Whispered, a web experiment in ephemeral, user-driven posts. Every post is born with 120 seconds to live, and the community decides what survives: upvotes add 60 seconds, d…
- story
- comment
-
comment
Comment #46922052
Bastion’s cryptography isn’t AI-generated. The system follows well-established cryptographic primitives and protocols: PBKDF2-HMAC-SHA512 for deterministic password derivation, Arg…
-
comment
Comment #46922023
Bastion isn’t designed for convenience or multi-device sync — it’s a deterministic, stateless cryptographic protocol. The master isn’t a human-memorable password; it’s a 256-bit ro…
-
comment
Comment #46921262
Interesting approach. I like that this is explicit about human recovery rather than pretending crypto alone solves catastrophe. That said, this design and fully stateless systems l…
-
comment
Comment #46921088
Most prior attempts reduce to hash(master || site). Bastion treats password generation as a cryptographic protocol with explicit invariants, not a convenience function. An importan…
-
comment
Comment #46921084
Rotation is explicit and deterministic via the version parameter. Old passwords can be regenerated for rollback; new ones don’t require storage.
-
comment
Comment #46921075
Bastion does not treat the master as a “password.” It is a cryptographic root secret equivalent to a 256-bit key. If you downgrade it to a human-memorable string, you are violating…
-
comment
Comment #46921059
Bastion has the same failure model as a hardware wallet or SSH private key. If you want recoverability, you accept third-party trust. Bastion refuses that trade.
-
comment
Comment #46915124
Interesting approach. Exposing high-level goals rather than UI actions definitely reduces token overhead, but reproducible comparisons with open-source setups would strengthen the …
-
comment
Comment #46915093
Nice catalog. One subtle thing I’ve found in building deterministic, stateless systems is that atomic filesystem and memory operations are the only way to safely compute or persist…
-
comment
Comment #46915063
Nice work. One thing I've noticed with locally checking extensions against threat lists is that the verification process itself can become a target. Stateless, deterministic verifi…
-
comment
Comment #46914992
FYI: Bastion assumes a trusted local execution environment and a strong master secret. It does not defend against a compromised OS or browser runtime. The system trades convenience…
-
story
Show HN: A password system with no database, no sync, and nothing to breach
Hi HN, Bastion Enclave is an experiment in removing centralized trust from password management by eliminating server-side state entirely. Instead of storing an encrypted vault or s…