eoo.py 387 B

1234567891011121314151617
  1. #
  2. # This file is part of pyasn1 software.
  3. #
  4. # Copyright (c) 2005-2017, Ilya Etingof <etingof@gmail.com>
  5. # License: http://pyasn1.sf.net/license.html
  6. #
  7. from pyasn1.type import base, tag
  8. class EndOfOctets(base.AbstractSimpleAsn1Item):
  9. defaultValue = 0
  10. tagSet = tag.initTagSet(
  11. tag.Tag(tag.tagClassUniversal, tag.tagFormatSimple, 0x00)
  12. )
  13. endOfOctets = EndOfOctets()