summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0380/stanza.py
blob: 7013c95fd821e1699b7eac10189f8462342708a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

# 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'}