diff --git a/plugin.py b/plugin.py index 18ae1f7..6dd3a8b 100644 --- a/plugin.py +++ b/plugin.py @@ -44,16 +44,6 @@ def b64dec(data): return base64.b64decode(data.decode('ASCII')) -def splitn(s, n): - sections = len(s) // n - for i in range(sections): - yield s[n * i:n * (i + 1)] - - -def format_fingerprint(fp): - return ":".join(splitn(fp, 4)) - - # XXX: This should probably be moved in plugins/base.py? class PluginCouldNotLoad(Exception): pass @@ -138,10 +128,6 @@ class XEP_0384(BasePlugin): def my_device_id(self): return self._device_id - def my_fingerprint(self): - bundle = self._omemo.get_bundle() - return format_fingerprint(bundle.fingerprint) - def _generate_bundle_iq(self): bundle = self._omemo.get_bundle() log.debug('FOO2 Bundle: %r', bundle.fingerprint)