Hey everyone! I wanted to share a project I’ve been working on: the Polyseed Secret Sharing Tool. It’s a Python CLI application that uses Shamir’s Secret Sharing Scheme to back up a Monero polyseed. This method dramatically increases security by breaking your seedphrase into multiple shares, where a predefined number of shares are needed to reconstruct the secret. It’s an innovative approach to avoid the risk of having your entire wallet compromised if one location is breached.

This tool is currently in the experimental stage and I would love to get feedback and contributions, especially from those skilled in cryptography and coding. It’s designed for use in a secure, air-gapped environment (like TAILS) for maximum safety.

Check it out, and let’s discuss how we can make the Monero experience more secure!

https://github.com/Unkn8wn69/psst

Keep in mind that I created this today and it still needs a lot of testing and cleaning

  • jet@hackertalks.com
    link
    fedilink
    English
    arrow-up
    2
    ·
    7 months ago

    That looks really cool!

    It kind of reminds me of paperback, which takes arbitrary data and stores it on paper using secret sharing so that you need multiple copies to recover the original secret. The method they use to create the papers interesting you might want to look at it

    https://github.com/cyphar/paperback

    • Unkn8wn69@monero.townOP
      link
      fedilink
      arrow-up
      3
      ·
      7 months ago

      Looks verg cool! My project uses the same principle but I found a way to drastically reduce the size of the shared seed phrases. It just stores the index of each word in the wordlist instead of the whole seed phrase.

      So you can have just 20-25 word seeds instead of 80-90 when storing it directly in hex format.

      • jet@hackertalks.com
        link
        fedilink
        English
        arrow-up
        1
        ·
        7 months ago

        Right. I believe paperback can store about 1 kilobyte in each QR code. Up to six QR codes per page. So it’s about 6 kB of data. Which is more than enough for your 25 seed words.

        It might be interesting to use this as an amalgam for the printed format, for the offline version.