summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0380/stanza.py
blob: 7dd678b1b332a9d3a6e716c15ac730b6b7718a35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""
    Slixmpp: The Slick XMPP Library
    Copyright (C) 2016 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
    This file is part of Slixmpp.

    See the file LICENSE for copying permission.
"""

from slixmpp.xmlstream import ElementBase


class Encryption(ElementBase):
    name = 'encryption'
    namespace = 'urn:xmpp:eme:0'
    plugin_attrib = 'eme'
    interfaces = {'namespace', 'name'}