mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 12:10:26 +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
|
|
}
|