summaryrefslogtreecommitdiff
path: root/src/saml2/profile/samlec.py
blob: b90f6d3d8627004bd32a830d8f8e54420beaa4d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from saml2 import SamlBase


NAMESPACE = 'urn:ietf:params:xml:ns:samlec'


class GeneratedKey(SamlBase):
    c_tag = 'GeneratedKey'
    c_namespace = NAMESPACE


ELEMENT_BY_TAG = {
    'GeneratedKey': GeneratedKey,
}