mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-23 08:11:36 +00:00
16 lines
281 B
Go
16 lines
281 B
Go
|
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
|
||
|
}
|