Share this.

  • sleepyleaf@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    0
    ·
    edit-2
    1 month ago

    Although I do wish that profiles and comment history could be preserved from one server to another. That’s basically the last piece of the puzzle that would give the user a completely a completely free experience.

    Something like an independent third party data bank that saves profile data? So your user data would be publicly accessible - any server can access it to populate your profile on that server - but nobody can update or delete it but you?

    Shit, have we found an actual use case for blockchain?

    • frosty122@lemm.ee
      link
      fedilink
      English
      arrow-up
      0
      ·
      edit-2
      1 month ago

      Nah, There’s other ways to store data while preserving confidentiality, integrity and availability that isn’t on the blockchain. Besides A public ledger connected to a specific profile could make it easier for the profile to be doxxed/fingerprinted.

      Spitballing here but a service using simple key-pairs might be a better way to do this.

      • Users generate a key pair client-side.

      • Public key is stored on the server, acting as the user’s identity.

      • To update their profile, users sign the request with their private key. (Data is signed/verified client side before submission)

      • The server verifies the signature using the stored public key before edits can be made.

      Because data signature/verification are done client side theoretically you don’t need a ledger, your client can enforce profile state. (Maybe an HMAC is sent with the verified data and there reverted periodically by the client)