mirror of
https://github.com/status-im/status-go.git
synced 2026-08-31 09:01:16 +00:00
11 lines
346 B
Go
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
|
|
}
|