Tim Caswell
Tim Caswell
I'd like to keep the API as minimal as possible. If you want to do anything custom, the request method makes that pretty easy. I really don't want to force...
Thanks for the tips. I'm busy for the next while and so won't be able to dive in. Do you intend to update to latest ghost themes, or has your...
Hmm, I thought it used to work, maybe it was a node api change. Either way, you're more than welcome to send a patch to fix this. Basic auth is...
I need more details to understand what's going on here.
I always install by cloning from git. Then _if_ I want to update, I simply do a git pull. That said, why would you upgrade if it's working? Personally I've...
The relay doesn't need to verify anything. Maybe I misunderstood what signcryption does. What I want is a system where: - A message is encrypted end-to-end (relays can't read it)...
The receiver knows the sender's public key. Isn't that enough to decrypt the message? My understanding is this is similar to a normal digital signature. In signature: - message is...
I think I'm misunderstanding the primitives. [This clears it up for me a bit](https://crypto.stackexchange.com/questions/83266/why-are-ed25519-keys-not-recommended-for-encryption)
I think ECIES might be what I'm looking for. But I also saw that maybe I shouldn't use the same keypair for that as used for signatures.
Or what I want without specifying implementation details: - sender encrypts a message and publishes it publicly without disclosing the corresponding public key, only a hash of the public key...