Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)FR
Posts 0
Comments 1
Therewasanattempt to remove the doge employees email list.
  • 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)