This commit is contained in:
Alfa
2017-07-28 17:14:31 -04:00
commit 60e4685ce8
1039 changed files with 162852 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
# DER decoder
from pyasn1.codec.cer import decoder
tagMap = decoder.tagMap
typeMap = decoder.typeMap
class Decoder(decoder.Decoder):
supportIndefLength = False
decode = Decoder(tagMap, typeMap)