]> Cypherpunks.ru repositories - pygost.git/blob - pygost/asn1schemas/pkcs10.py
f1f684aca0be418155ef85132376b05e6c76b6dc
[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 Any
20 from pyderasn import BitString
21 from pyderasn import Integer
22 from pyderasn import ObjectIdentifier
23 from pyderasn import Sequence
24 from pyderasn import SetOf
25 from pyderasn import tag_ctxc
26
27 from pygost.asn1schemas.x509 import AlgorithmIdentifier
28 from pygost.asn1schemas.x509 import Name
29 from pygost.asn1schemas.x509 import SubjectPublicKeyInfo
30
31
32 class AttributeValue(Any):
33     pass
34
35
36 class AttributeValues(SetOf):
37     schema = AttributeValue()
38
39
40 class Attribute(Sequence):
41     schema = (
42         ("type", ObjectIdentifier()),
43         ("values", AttributeValues()),
44     )
45
46
47 class Attributes(SetOf):
48     schema = Attribute()
49
50
51 class CertificationRequestInfo(Sequence):
52     schema = (
53         ("version", Integer(0)),
54         ("subject", Name()),
55         ("subjectPKInfo", SubjectPublicKeyInfo()),
56         ("attributes", Attributes(impl=tag_ctxc(0))),
57     )
58
59
60 class CertificationRequest(Sequence):
61     schema = (
62         ("certificationRequestInfo", CertificationRequestInfo()),
63         ("signatureAlgorithm", AlgorithmIdentifier()),
64         ("signature", BitString()),
65     )