blob: 05ad8d1eaf4ef793e9f77da7ad4d564a7fea5a95 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
package store
import (
"go.mau.fi/libsignal/keys/identity"
"go.mau.fi/libsignal/protocol"
)
// IdentityKey provides an interface to identity information.
type IdentityKey interface {
// Get the local client's identity key pair.
GetIdentityKeyPair() *identity.KeyPair
// Return the local client's registration ID.
//
// Clients should maintain a registration ID, a random number between 1 and 16380
// that's generated once at install time.
GetLocalRegistrationId() uint32
// Save a remote client's identity key in our identity store.
SaveIdentity(address *protocol.SignalAddress, identityKey *identity.Key)
// Verify a remote client's identity key.
//
// Determine whether a remote client's identity is trusted. Trust is based on
// 'trust on first use'. This means that an identity key is considered 'trusted'
// if there is no entry for the recipient in the local store, or if it matches the
// saved key for a recipient in the local store.
IsTrustedIdentity(address *protocol.SignalAddress, identityKey *identity.Key) bool
}
|