Files
Igor Sirotin 0fcf4ceb8e refactor: project layout (messaging) (#7224)
* refactor: pkg/messaging

* fix: address non-go changes
2025-12-17 19:40:40 +00:00

11 lines
346 B
Go

package processor
import "crypto/ecdsa"
// SenderUnawareOfInstallation indicates that an encrypted message was sent to us,
// but our installation target is not yet known to the sender.
// This might happen when a user adds a new device and the sender is not aware of it.
type SenderUnawareOfInstallation struct {
PublicKey *ecdsa.PublicKey
}