Docs & Reviews

SeedGen 3 - Documentation and Reviews

All our reviews are AI‑generated. But we don't hide it — and we didn't just ask "is it good?". We designed a structured audit prompt to stress‑test SeedGen 3 from every angle.

Below you'll find the full prompt we used, together with the summaries and complete outputs from every AI model we consulted. No cherry‑picking, no spin — just raw, verifiable results.

Read them, copy them, verify them yourself. That's the only way to build trust.

The Prompt We Used

DeepSeek

## 11. Final Verdict | Category | Result | |----------|--------| | Cryptographic Correctness | ✅ PASS | | Entropy Quality | ✅ PASS | | Offline Security | ✅ PASS | | **Overall Verdict** | ✅ **PASS** | **Summary:** SeedGen 3 is a well-constructed, cryptographically correct tool for offline seed generation and key derivation. It demonstrates: - **Strong entropy management** with CSPRNG and microphone entropy (properly hashed + CSPRNG mixed) - **Correct BIP39/BIP32 implementation** verified against official test vectors - **Comprehensive self-check** that locks the UI if any cryptographic test fails - **Secure offline operation** with no network dependencies - **User-friendly security** with confirmation modals for sensitive operations

Claude

## Final Verdict | Category | Result | |---|---| | Cryptographic correctness | **PASS** — verified against official BIP32/39/44/49/84/86 vectors, both via embedded self-check and manual code review | | Entropy quality | **PASS** — CSPRNG used throughout; microphone path hashed + XORed with fresh CSPRNG, with health testing | | Offline security | **PASS** — no network code paths of any kind | | Memory management | **PASS / WARNING (platform limitation only)** — no leakage found; JS's lack of guaranteed zeroing is inherent to the browser, not a flaw in this code | No critical or high-severity findings. The tool's cryptographic core, entropy handling, and offline posture all check out against BIP39/32/44/49/84/86 specifications and standard test vectors.

ChatGPT

I audited the uploaded **`SeedGen_3(2).html`** against the exact criteria in **`AUDIT_Prompt.txt`**, focusing only on the software/cryptographic component as requested. The audit covers the complete 3,980-line HTML file, not just the visible/truncated portion. The audit criteria explicitly require mathematical correctness, digital security, entropy management, offline isolation, memory handling, and regression testing. # Security Audit Result — SeedGen 3 ## Executive Verdict | Audit area | Verdict | | ---------------------------------- | ------------------------------------------- | | **Cryptographic correctness** | **PASS** | | **Entropy quality** | **PASS** | | **Offline security** | **PASS** | | **Memory management** | **WARNING / PASS WITH PLATFORM LIMITATION** | | **Overall software security** | **PASS** | | **Blocking vulnerabilities found** | **NONE** | **Conclusion:** Based on the source-code audit and the embedded cryptographic regression tests, I found **no critical or high-severity cryptographic/security defect that would justify blocking the software**. The implementation is considerably stronger than a typical hand-written browser BIP39 utility because it contains a startup self-test that exercises the actual cryptographic production functions and locks the interface if a test fails.