5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-11-10 06:20:28 +00:00
matterbridge/vendor/go.mau.fi/libsignal/state/store/PreKeyStore.go
2022-03-20 14:57:48 +01:00

22 lines
506 B
Go

package store
import (
"go.mau.fi/libsignal/state/record"
)
// PreKey store is an interface describing the local storage
// of PreKeyRecords
type PreKey interface {
// Load a local PreKeyRecord
LoadPreKey(preKeyID uint32) *record.PreKey
// Store a local PreKeyRecord
StorePreKey(preKeyID uint32, preKeyRecord *record.PreKey)
// Check to see if the store contains a PreKeyRecord
ContainsPreKey(preKeyID uint32) bool
// Delete a PreKeyRecord from local storage.
RemovePreKey(preKeyID uint32)
}