summaryrefslogtreecommitdiff
path: root/pyasn1/codec/ber/eoo.py
blob: 59e1b2283ce6e91f546c9a8cf6f959cdbf3a0d3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#
# This file is part of pyasn1 software.
#
# Copyright (c) 2005-2016, Ilya Etingof <ilya@glas.net>
# License: http://pyasn1.sf.net/license.html
#
from pyasn1.type import base, tag

class EndOfOctets(base.AbstractSimpleAsn1Item):
    defaultValue = 0
    tagSet = tag.initTagSet(
        tag.Tag(tag.tagClassUniversal, tag.tagFormatSimple, 0x00)
        )
endOfOctets = EndOfOctets()