Package org.jivesoftware.smackx.omemo
Class CachingOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- java.lang.Object
-
- org.jivesoftware.smackx.omemo.OmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
-
- org.jivesoftware.smackx.omemo.CachingOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
-
- Type Parameters:
T_IdKeyPair
- the type of the id key pair.T_IdKey
- the type of the id key.T_PreKey
- the prekey typeT_SigPreKey
- the signed prekey type.T_Sess
- the session type.T_Addr
- the address type.T_ECPub
- the EC pub type.T_Bundle
- the bundle type.T_Ciph
- the cipher type.
- Direct Known Subclasses:
SignalCachingOmemoStore
public class CachingOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph> extends OmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
This class implements the Proxy Pattern in order to wrap an OmemoStore with a caching layer. This reduces access to the underlying storage layer (eg. database, filesystem) by only accessing it for missing/updated values. Alternatively this implementation can be used as an ephemeral keystore without a persisting backend.
-
-
Constructor Summary
Constructors Constructor Description CachingOmemoStore(OmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph> wrappedStore)
CachingOmemoStore(OmemoKeyUtil<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_ECPub,T_Bundle> keyUtil)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
containsRawSession(OmemoDevice userDevice, OmemoDevice contactsDevice)
Return true, if we have a session with the device, otherwise false.Date
getDateOfLastDeviceIdPublication(OmemoDevice userDevice, OmemoDevice contactsDevice)
Return the date of the last time the deviceId was published after previously being not published.Date
getDateOfLastReceivedMessage(OmemoDevice userDevice, OmemoDevice from)
Return the date of the last message that was received from device 'from'.Date
getDateOfLastSignedPreKeyRenewal(OmemoDevice userDevice)
Get the date of the last time the signed preKey was renewed.OmemoKeyUtil<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_ECPub,T_Bundle>
keyUtil()
Return a concrete KeyUtil object that we can use as a utility to create keys etc.HashMap<Integer,T_Sess>
loadAllRawSessionsOf(OmemoDevice userDevice, BareJid contact)
Load all crypto-lib specific session objects of contact 'contact'.OmemoCachedDeviceList
loadCachedDeviceList(OmemoDevice userDevice, BareJid contact)
Load a list of deviceIds from contact 'contact' from the local cache.T_IdKey
loadOmemoIdentityKey(OmemoDevice userDevice, OmemoDevice contactsDevice)
Load the public identityKey of a device.T_IdKeyPair
loadOmemoIdentityKeyPair(OmemoDevice userDevice)
Load our identityKeyPair from storage.int
loadOmemoMessageCounter(OmemoDevice userDevice, OmemoDevice contactsDevice)
Return the current value of the message counter.T_PreKey
loadOmemoPreKey(OmemoDevice userDevice, int preKeyId)
Load the preKey with id 'preKeyId' from storage.TreeMap<Integer,T_PreKey>
loadOmemoPreKeys(OmemoDevice userDevice)
Return all our current OmemoPreKeys.T_SigPreKey
loadOmemoSignedPreKey(OmemoDevice userDevice, int signedPreKeyId)
Return the signedPreKey with the id 'singedPreKeyId'.TreeMap<Integer,T_SigPreKey>
loadOmemoSignedPreKeys(OmemoDevice userDevice)
Load all our signed PreKeys.T_Sess
loadRawSession(OmemoDevice userDevice, OmemoDevice contactsDevice)
Load the crypto-lib specific session object of the device from storage.SortedSet<Integer>
localDeviceIdsOf(BareJid localUser)
Returns a sorted set of all the deviceIds, the localUser has had data stored under in the store.void
purgeOwnDeviceKeys(OmemoDevice userDevice)
Delete this device's IdentityKey, PreKeys, SignedPreKeys and Sessions.void
removeAllRawSessionsOf(OmemoDevice userDevice, BareJid contact)
Remove all crypto-lib specific session of a contact.void
removeOmemoIdentityKey(OmemoDevice userDevice, OmemoDevice contactsDevice)
Removes the identityKey of a device.void
removeOmemoIdentityKeyPair(OmemoDevice userDevice)
Remove the identityKeyPair of a user.void
removeOmemoPreKey(OmemoDevice userDevice, int preKeyId)
Remove a preKey from storage.void
removeOmemoSignedPreKey(OmemoDevice userDevice, int signedPreKeyId)
Remove a signedPreKey from storage.void
removeRawSession(OmemoDevice userDevice, OmemoDevice contactsDevice)
Remove a crypto-lib specific session from storage.void
setDateOfLastDeviceIdPublication(OmemoDevice userDevice, OmemoDevice contactsDevice, Date date)
Set the date of the last time the deviceId was published.void
setDateOfLastReceivedMessage(OmemoDevice userDevice, OmemoDevice from, Date date)
Set the date of the last message that was received from a device.void
setDateOfLastSignedPreKeyRenewal(OmemoDevice userDevice, Date date)
Set the date of the last time the signed preKey was renewed.void
storeCachedDeviceList(OmemoDevice userDevice, BareJid contact, OmemoCachedDeviceList deviceList)
Store the DeviceList of the contact in local storage.void
storeOmemoIdentityKey(OmemoDevice userDevice, OmemoDevice device, T_IdKey t_idKey)
Store the public identityKey of the device.void
storeOmemoIdentityKeyPair(OmemoDevice userDevice, T_IdKeyPair identityKeyPair)
Store our identityKeyPair in storage.void
storeOmemoMessageCounter(OmemoDevice userDevice, OmemoDevice contactsDevice, int counter)
Store the number of messages we sent to a device since we last received a message back.void
storeOmemoPreKey(OmemoDevice userDevice, int preKeyId, T_PreKey t_preKey)
Store a PreKey in storage.void
storeOmemoSignedPreKey(OmemoDevice userDevice, int signedPreKeyId, T_SigPreKey signedPreKey)
Store a signedPreKey in storage.void
storeRawSession(OmemoDevice userDevice, OmemoDevice contactsDevicece, T_Sess session)
Store a crypto-lib specific session to storage.-
Methods inherited from class org.jivesoftware.smackx.omemo.OmemoStore
generateOmemoIdentityKeyPair, generateOmemoPreKeys, generateOmemoSignedPreKey, getFingerprint, getFingerprint, getFingerprintAndMaybeBuildSession, loadCachedDeviceList, loadCurrentOmemoSignedPreKeyId, replenishKeys, storeOmemoPreKeys
-
-
-
-
Constructor Detail
-
CachingOmemoStore
public CachingOmemoStore(OmemoKeyUtil<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_ECPub,T_Bundle> keyUtil)
-
CachingOmemoStore
public CachingOmemoStore(OmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph> wrappedStore)
-
-
Method Detail
-
localDeviceIdsOf
public SortedSet<Integer> localDeviceIdsOf(BareJid localUser)
Description copied from class:OmemoStore
Returns a sorted set of all the deviceIds, the localUser has had data stored under in the store. Basically this returns the deviceIds of all "accounts" of localUser, which are known to the store.- Specified by:
localDeviceIdsOf
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
localUser
- BareJid of the user.- Returns:
- set of deviceIds with available data.
-
loadOmemoIdentityKeyPair
public T_IdKeyPair loadOmemoIdentityKeyPair(OmemoDevice userDevice) throws CorruptedOmemoKeyException, IOException
Description copied from class:OmemoStore
Load our identityKeyPair from storage. Return null, if we have no identityKeyPair.- Specified by:
loadOmemoIdentityKeyPair
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our OmemoDevice.- Returns:
- loaded identityKeyPair
- Throws:
CorruptedOmemoKeyException
- Thrown, if the stored key is damaged (*hands up* not my fault!)IOException
- if an I/O error occurred.
-
storeOmemoIdentityKeyPair
public void storeOmemoIdentityKeyPair(OmemoDevice userDevice, T_IdKeyPair identityKeyPair) throws IOException
Description copied from class:OmemoStore
Store our identityKeyPair in storage. It would be a cool feature, if the key could be stored in a encrypted database or something similar.- Specified by:
storeOmemoIdentityKeyPair
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our OmemoDevice.identityKeyPair
- identityKeyPair- Throws:
IOException
- if an I/O error occurred.
-
removeOmemoIdentityKeyPair
public void removeOmemoIdentityKeyPair(OmemoDevice userDevice)
Description copied from class:OmemoStore
Remove the identityKeyPair of a user.- Specified by:
removeOmemoIdentityKeyPair
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our device.
-
loadOmemoIdentityKey
public T_IdKey loadOmemoIdentityKey(OmemoDevice userDevice, OmemoDevice contactsDevice) throws CorruptedOmemoKeyException, IOException
Description copied from class:OmemoStore
Load the public identityKey of a device.- Specified by:
loadOmemoIdentityKey
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our OmemoDevice.contactsDevice
- the device of which we want to load the identityKey.- Returns:
- loaded identityKey
- Throws:
CorruptedOmemoKeyException
- when the key in question is corrupted and cant be deserialized.IOException
- if an I/O error occurred.
-
storeOmemoIdentityKey
public void storeOmemoIdentityKey(OmemoDevice userDevice, OmemoDevice device, T_IdKey t_idKey) throws IOException
Description copied from class:OmemoStore
Store the public identityKey of the device.- Specified by:
storeOmemoIdentityKey
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our OmemoDevice.device
- device.t_idKey
- identityKey belonging to the contactsDevice.- Throws:
IOException
- if an I/O error occurred.
-
removeOmemoIdentityKey
public void removeOmemoIdentityKey(OmemoDevice userDevice, OmemoDevice contactsDevice)
Description copied from class:OmemoStore
Removes the identityKey of a device.- Specified by:
removeOmemoIdentityKey
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our omemoDevice.contactsDevice
- device of which we want to delete the identityKey.
-
storeOmemoMessageCounter
public void storeOmemoMessageCounter(OmemoDevice userDevice, OmemoDevice contactsDevice, int counter) throws IOException
Description copied from class:OmemoStore
Store the number of messages we sent to a device since we last received a message back. This counter gets reset to 0 whenever we receive a message from the contacts device.- Specified by:
storeOmemoMessageCounter
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our omemoDevice.contactsDevice
- device of which we want to set the message counter.counter
- counter value.- Throws:
IOException
- if an I/O error occurred.
-
loadOmemoMessageCounter
public int loadOmemoMessageCounter(OmemoDevice userDevice, OmemoDevice contactsDevice) throws IOException
Description copied from class:OmemoStore
Return the current value of the message counter. This counter represents the number of message we sent to the contactsDevice without getting a reply back. The default value for this counter is 0.- Specified by:
loadOmemoMessageCounter
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our omemoDevicecontactsDevice
- device of which we want to get the message counter.- Returns:
- counter value.
- Throws:
IOException
- if an I/O error occurred.
-
setDateOfLastReceivedMessage
public void setDateOfLastReceivedMessage(OmemoDevice userDevice, OmemoDevice from, Date date) throws IOException
Description copied from class:OmemoStore
Set the date of the last message that was received from a device.- Specified by:
setDateOfLastReceivedMessage
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- omemoManager of our device.from
- device in questiondate
- date of the last received message- Throws:
IOException
- if an I/O error occurred.
-
getDateOfLastReceivedMessage
public Date getDateOfLastReceivedMessage(OmemoDevice userDevice, OmemoDevice from) throws IOException
Description copied from class:OmemoStore
Return the date of the last message that was received from device 'from'.- Specified by:
getDateOfLastReceivedMessage
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our OmemoDevice.from
- device in question- Returns:
- date if existent, null
- Throws:
IOException
- if an I/O error occurred.
-
setDateOfLastDeviceIdPublication
public void setDateOfLastDeviceIdPublication(OmemoDevice userDevice, OmemoDevice contactsDevice, Date date) throws IOException
Description copied from class:OmemoStore
Set the date of the last time the deviceId was published. This method only gets called, when the deviceId was inactive/non-existent before it was published.- Specified by:
setDateOfLastDeviceIdPublication
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our OmemoDevicecontactsDevice
- OmemoDevice in questiondate
- date of the last publication after not being published- Throws:
IOException
- if an I/O error occurred.
-
getDateOfLastDeviceIdPublication
public Date getDateOfLastDeviceIdPublication(OmemoDevice userDevice, OmemoDevice contactsDevice) throws IOException
Description copied from class:OmemoStore
Return the date of the last time the deviceId was published after previously being not published. (Point in time, where the status of the deviceId changed from inactive/non-existent to active).- Specified by:
getDateOfLastDeviceIdPublication
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our OmemoDevicecontactsDevice
- OmemoDevice in question- Returns:
- date of the last publication after not being published
- Throws:
IOException
- if an I/O error occurred.
-
setDateOfLastSignedPreKeyRenewal
public void setDateOfLastSignedPreKeyRenewal(OmemoDevice userDevice, Date date) throws IOException
Description copied from class:OmemoStore
Set the date of the last time the signed preKey was renewed.- Specified by:
setDateOfLastSignedPreKeyRenewal
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our OmemoDevice.date
- date- Throws:
IOException
- if an I/O error occurred.
-
getDateOfLastSignedPreKeyRenewal
public Date getDateOfLastSignedPreKeyRenewal(OmemoDevice userDevice) throws IOException
Description copied from class:OmemoStore
Get the date of the last time the signed preKey was renewed.- Specified by:
getDateOfLastSignedPreKeyRenewal
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our OmemoDevice.- Returns:
- date if existent, otherwise null
- Throws:
IOException
- if an I/O error occurred.
-
loadOmemoPreKey
public T_PreKey loadOmemoPreKey(OmemoDevice userDevice, int preKeyId) throws IOException
Description copied from class:OmemoStore
Load the preKey with id 'preKeyId' from storage.- Specified by:
loadOmemoPreKey
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our OmemoDevice.preKeyId
- id of the key to be loaded- Returns:
- loaded preKey
- Throws:
IOException
- if an I/O error occurred.
-
storeOmemoPreKey
public void storeOmemoPreKey(OmemoDevice userDevice, int preKeyId, T_PreKey t_preKey) throws IOException
Description copied from class:OmemoStore
Store a PreKey in storage.- Specified by:
storeOmemoPreKey
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our OmemoDevice.preKeyId
- id of the keyt_preKey
- key- Throws:
IOException
- if an I/O error occurred.
-
removeOmemoPreKey
public void removeOmemoPreKey(OmemoDevice userDevice, int preKeyId)
Description copied from class:OmemoStore
Remove a preKey from storage. This is called, when a contact used one of our preKeys to establish a session with us.- Specified by:
removeOmemoPreKey
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our OmemoDevice.preKeyId
- id of the used key that will be deleted
-
loadOmemoPreKeys
public TreeMap<Integer,T_PreKey> loadOmemoPreKeys(OmemoDevice userDevice) throws IOException
Description copied from class:OmemoStore
Return all our current OmemoPreKeys.- Specified by:
loadOmemoPreKeys
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our OmemoDevice.- Returns:
- Map containing our preKeys
- Throws:
IOException
- if an I/O error occurred.
-
loadOmemoSignedPreKey
public T_SigPreKey loadOmemoSignedPreKey(OmemoDevice userDevice, int signedPreKeyId) throws IOException
Description copied from class:OmemoStore
Return the signedPreKey with the id 'singedPreKeyId'.- Specified by:
loadOmemoSignedPreKey
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our OmemoDevice.signedPreKeyId
- id of the key- Returns:
- loaded signed preKey
- Throws:
IOException
- if an I/O error occurred.
-
loadOmemoSignedPreKeys
public TreeMap<Integer,T_SigPreKey> loadOmemoSignedPreKeys(OmemoDevice userDevice) throws IOException
Description copied from class:OmemoStore
Load all our signed PreKeys.- Specified by:
loadOmemoSignedPreKeys
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our OmemoDevice.- Returns:
- HashMap of our singedPreKeys
- Throws:
IOException
- if an I/O error occurred.
-
storeOmemoSignedPreKey
public void storeOmemoSignedPreKey(OmemoDevice userDevice, int signedPreKeyId, T_SigPreKey signedPreKey) throws IOException
Description copied from class:OmemoStore
Store a signedPreKey in storage.- Specified by:
storeOmemoSignedPreKey
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our OmemoDevice.signedPreKeyId
- id of the signedPreKeysignedPreKey
- the key itself- Throws:
IOException
- if an I/O error occurred.
-
removeOmemoSignedPreKey
public void removeOmemoSignedPreKey(OmemoDevice userDevice, int signedPreKeyId)
Description copied from class:OmemoStore
Remove a signedPreKey from storage.- Specified by:
removeOmemoSignedPreKey
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our OmemoDevice.signedPreKeyId
- id of the key that will be removed
-
loadRawSession
public T_Sess loadRawSession(OmemoDevice userDevice, OmemoDevice contactsDevice) throws IOException
Description copied from class:OmemoStore
Load the crypto-lib specific session object of the device from storage.- Specified by:
loadRawSession
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our OmemoDevice.contactsDevice
- device whose session we want to load- Returns:
- crypto related session
- Throws:
IOException
- if an I/O error occurred.
-
loadAllRawSessionsOf
public HashMap<Integer,T_Sess> loadAllRawSessionsOf(OmemoDevice userDevice, BareJid contact) throws IOException
Description copied from class:OmemoStore
Load all crypto-lib specific session objects of contact 'contact'.- Specified by:
loadAllRawSessionsOf
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our OmemoDevice.contact
- BareJid of the contact we want to get all sessions from- Returns:
- TreeMap of deviceId and sessions of the contact
- Throws:
IOException
- if an I/O error occurred.
-
storeRawSession
public void storeRawSession(OmemoDevice userDevice, OmemoDevice contactsDevicece, T_Sess session) throws IOException
Description copied from class:OmemoStore
Store a crypto-lib specific session to storage.- Specified by:
storeRawSession
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our OmemoDevice.contactsDevicece
- OmemoDevice whose session we want to storesession
- session- Throws:
IOException
- if an I/O error occurred.
-
removeRawSession
public void removeRawSession(OmemoDevice userDevice, OmemoDevice contactsDevice)
Description copied from class:OmemoStore
Remove a crypto-lib specific session from storage.- Specified by:
removeRawSession
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our OmemoDevice.contactsDevice
- device whose session we want to delete
-
removeAllRawSessionsOf
public void removeAllRawSessionsOf(OmemoDevice userDevice, BareJid contact)
Description copied from class:OmemoStore
Remove all crypto-lib specific session of a contact.- Specified by:
removeAllRawSessionsOf
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our OmemoDevice.contact
- BareJid of the contact
-
containsRawSession
public boolean containsRawSession(OmemoDevice userDevice, OmemoDevice contactsDevice)
Description copied from class:OmemoStore
Return true, if we have a session with the device, otherwise false. Hint for Signal: Do not try 'return getSession() != null' since this will create a new session.- Specified by:
containsRawSession
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our OmemoDevice.contactsDevice
- device- Returns:
- true if we have session, otherwise false
-
loadCachedDeviceList
public OmemoCachedDeviceList loadCachedDeviceList(OmemoDevice userDevice, BareJid contact) throws IOException
Description copied from class:OmemoStore
Load a list of deviceIds from contact 'contact' from the local cache.- Specified by:
loadCachedDeviceList
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our OmemoDevice.contact
- contact we want to get the deviceList of- Returns:
- CachedDeviceList of the contact
- Throws:
IOException
- if an I/O error occurred.
-
storeCachedDeviceList
public void storeCachedDeviceList(OmemoDevice userDevice, BareJid contact, OmemoCachedDeviceList deviceList) throws IOException
Description copied from class:OmemoStore
Store the DeviceList of the contact in local storage. See this as a cache.- Specified by:
storeCachedDeviceList
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our OmemoDevice.contact
- ContactdeviceList
- list of the contacts devices' ids.- Throws:
IOException
- if an I/O error occurred.
-
purgeOwnDeviceKeys
public void purgeOwnDeviceKeys(OmemoDevice userDevice)
Description copied from class:OmemoStore
Delete this device's IdentityKey, PreKeys, SignedPreKeys and Sessions.- Specified by:
purgeOwnDeviceKeys
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Parameters:
userDevice
- our OmemoDevice.
-
keyUtil
public OmemoKeyUtil<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_ECPub,T_Bundle> keyUtil()
Description copied from class:OmemoStore
Return a concrete KeyUtil object that we can use as a utility to create keys etc.- Specified by:
keyUtil
in classOmemoStore<T_IdKeyPair,T_IdKey,T_PreKey,T_SigPreKey,T_Sess,T_Addr,T_ECPub,T_Bundle,T_Ciph>
- Returns:
- KeyUtil object
-
-