]> Cypherpunks.ru repositories - pygost.git/blobdiff - pygost/asn1schemas/cms.py
Raised copyright years
[pygost.git] / pygost / asn1schemas / cms.py
index c57f6f014e88267d332a002ba8b1c088d68859ea..d8b89e2ec4df93332b633585976ca4c0f33b670a 100644 (file)
@@ -1,6 +1,6 @@
 # coding: utf-8
 # PyGOST -- Pure Python GOST cryptographic functions library
-# Copyright (C) 2015-2021 Sergey Matveev <stargrave@stargrave.org>
+# Copyright (C) 2015-2022 Sergey Matveev <stargrave@stargrave.org>
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -389,20 +389,6 @@ class SignerInfos(SetOf):
     schema = SignerInfo()
 
 
-class CertificateChoices(Choice):
-    schema = (
-        ("certificate", Certificate()),
-        # ("extendedCertificate", ExtendedCertificate(impl=tag_ctxp(0))),
-        # ("v1AttrCert", AttributeCertificateV1(impl=tag_ctxc(1))),  # V1 is osbolete
-        # ("v2AttrCert", AttributeCertificateV2(impl=tag_ctxc(2))),
-        # ("other", OtherCertificateFormat(impl=tag_ctxc(3))),
-    )
-
-
-class CertificateSet(SetOf):
-    schema = CertificateChoices()
-
-
 class SignedData(Sequence):
     schema = (
         ("version", CMSVersion()),