From a258f5d91fac1df3361248354594fdef0102b716 Mon Sep 17 00:00:00 2001 From: Artem Petrenko <47205258+li0ard@users.noreply.github.com> Date: Sat, 7 Oct 2023 13:26:15 +0600 Subject: [PATCH] Issue #2 fix --- schemas.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/schemas.py b/schemas.py index 7802f75..5a7266b 100644 --- a/schemas.py +++ b/schemas.py @@ -21,7 +21,8 @@ class CPBlob(Sequence): schema = ( ("version", Integer()), ("notused", Any()), - ("value", OctetString()) + ("value", OctetString()), + ("notused2", Any(optional=True)) ) class CPExportBlobCek(Sequence): @@ -60,4 +61,4 @@ class PKey(Sequence): ("version", Integer(0)), ("params", PKeyPub()), ("key", OctetString()) - ) \ No newline at end of file + )