blob: 081e0380b4de20314ab6ab363ab2c3950b216bd9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package store
import (
"go.mau.fi/libsignal/groups/state/store"
)
// SignalProtocol store is an interface that implements the
// methods for all stores needed in the Signal Protocol.
type SignalProtocol interface {
IdentityKey
PreKey
Session
SignedPreKey
store.SenderKey
}
|