matterbridge/vendor/go.mau.fi/libsignal/state/store/PreKeyStore.go

22 lines
506 B
Go
Raw Normal View History

2022-01-30 15:27:37 -08:00
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)
}