2018-11-18 11:00:25 +00:00
|
|
|
"""
|
|
|
|
Slixmpp: The Slick XMPP Library
|
|
|
|
|
2018-11-18 17:04:58 +00:00
|
|
|
Shamelessly inspired from Syndace's python-omemo examples.
|
2018-11-18 11:00:25 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
import omemo
|
|
|
|
|
|
|
|
|
|
|
|
class KeepingOTPKPolicy(omemo.OTPKPolicy):
|
|
|
|
@staticmethod
|
|
|
|
def decideOTPK(preKeyMessages):
|
|
|
|
# Always keep the OTPK.
|
|
|
|
# This is the unsafest behaviour possible and should be avoided at all costs.
|
|
|
|
return True
|