Oddbean new post about | logout
 Offline key signs messages about what other keys can represent it

Those other keys go in your clients

If one gets compromised, master key signs a revocation and merkle tree of pre-revocation signatures 
 That’s interesting. Instead of signing events, you sign delegations. 

This seems much better than what we have now. 
 that's NIP26 - Delegated event signing, but it's kinda deprecated: 
https://github.com/nostr-protocol/nips/blob/master/26.md 
 So review our key handling practices, but it's still impossible (or deprecated) to actually have good ones...? 
 do you think using delegated event signing (at least the way mentioned in NIP-26) is the best practice of managing our keys? 
 Key delegation and revokation (or even better, rotation) are badly needed, but NIP 26 isn't it.

Some recent discussion on the topic: https://github.com/nostr-protocol/nips/pull/1452

I'm sure your perspective on the problem would be very welcome. 
 It's not really necessary, because it is impossible. 
 Someday I'll sit down and singlehandedly solve social key rotation 
 #YESTR 
 How does it currently work? Do nostr clients store the private key on their servers after it's submitted by the user? 
 Usually it's stored in the app/browser, hopefully never on the server. You can also use extensions like nos2x or alby to protect your key from the app, or you can use NIP 46 signers like nsec.app or Amber to hold your own keys and sign remotely. 
 Thank you for the explanation. I'm looking at the NIP-46 doc and it's really a neat solution.