summaryrefslogtreecommitdiff
path: root/pyasn1/codec/der/decoder.py
blob: 14e3279f36594f907fb670259b119a51dfbf673d (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.codec.cer import decoder

tagMap = decoder.tagMap
typeMap = decoder.typeMap
class Decoder(decoder.Decoder):
    supportIndefLength = False

decode = Decoder(tagMap, typeMap)