]> Cypherpunks.ru repositories - pygost.git/blob - pygost/asn1schemas/pkcs10.py
1665f8ae21786aee8cfd3fb1735e0e3d19ecb6bf
[pygost.git] / pygost / asn1schemas / pkcs10.py
1 # coding: utf-8
2 # PyGOST -- Pure Python GOST cryptographic functions library
3 # Copyright (C) 2015-2020 Sergey Matveev <stargrave@stargrave.org>
4 #
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, version 3 of the License.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 """PKCS #10 related structures (**NOT COMPLETE**)
17 """
18
19 from pyderasn import BitString
20 from pyderasn import Integer
21 from pyderasn import Sequence
22 from pyderasn import SetOf
23 from pyderasn import tag_ctxc
24
25 from pygost.asn1schemas.cms import Attribute
26 from pygost.asn1schemas.x509 import AlgorithmIdentifier
27 from pygost.asn1schemas.x509 import Name
28 from pygost.asn1schemas.x509 import SubjectPublicKeyInfo
29
30
31 class Attributes(SetOf):
32     schema = Attribute()
33
34
35 class CertificationRequestInfo(Sequence):
36     schema = (
37         ("version", Integer(0)),
38         ("subject", Name()),
39         ("subjectPKInfo", SubjectPublicKeyInfo()),
40         ("attributes", Attributes(impl=tag_ctxc(0))),
41     )
42
43
44 class CertificationRequest(Sequence):
45     schema = (
46         ("certificationRequestInfo", CertificationRequestInfo()),
47         ("signatureAlgorithm", AlgorithmIdentifier()),
48         ("signature", BitString()),
49     )