WeSearch

How I built a zero-knowledge secret sharing tool

·5 min read · 0 reactions · 0 comments · 8 views
#security#encryption#webdev
How I built a zero-knowledge secret sharing tool
⚡ TL;DR · AI summary

The article discusses the creation of SecretVoid, a zero-knowledge secret sharing tool designed to securely share sensitive information. It employs dual-layer encryption to ensure that neither the server nor the creator can access the shared secrets. The tool also includes optional password protection for added security.

Key facts
Original article
DEV.to (Top)
Read full at DEV.to (Top) →
Opening excerpt (first ~120 words) tap to expand

try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3950666) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Mark Posted on May 25 How I built a zero-knowledge secret sharing tool #showdev #webdev #security #javascript I work with developers. That means at some point, someone needs to share a database password or API key quickly, and Slack is just… there. It's convenient. But that credential is now sitting in Slack's servers, searchable, forever.

Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).

Anonymous · no account needed
Share 𝕏 Facebook Reddit LinkedIn Threads WhatsApp Bluesky Mastodon Email

Discussion

0 comments

More from DEV.to (Top)