File: rfc3709.py

package info (click to toggle)
python-pyasn1-modules-lextudio 0.2.9-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,220 kB
  • sloc: python: 30,857; makefile: 9
file content (267 lines) | stat: -rw-r--r-- 6,796 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
#
# This file is part of pyasn1-modules software.
#
# Created by Russ Housley with assistance from asn1ate v.0.6.0.
# Modified by Russ Housley to add maps for use with opentypes.
#
# Copyright (c) 2019, Vigil Security, LLC
# License: https://www.pysnmp.com/pyasn1/license.html
#
# Logotypes in X.509 Certificates
#
# ASN.1 source from:
# https://www.rfc-editor.org/rfc/rfc3709.txt
#

from pyasn1.type import char, constraint, namedtype, namedval, tag, univ

from pyasn1_modules import rfc5280, rfc6170

MAX = float("inf")


class HashAlgAndValue(univ.Sequence):
    pass


HashAlgAndValue.componentType = namedtype.NamedTypes(
    namedtype.NamedType("hashAlg", rfc5280.AlgorithmIdentifier()),
    namedtype.NamedType("hashValue", univ.OctetString()),
)


class LogotypeDetails(univ.Sequence):
    pass


LogotypeDetails.componentType = namedtype.NamedTypes(
    namedtype.NamedType("mediaType", char.IA5String()),
    namedtype.NamedType(
        "logotypeHash",
        univ.SequenceOf(componentType=HashAlgAndValue()).subtype(
            sizeSpec=constraint.ValueSizeConstraint(1, MAX)
        ),
    ),
    namedtype.NamedType(
        "logotypeURI",
        univ.SequenceOf(componentType=char.IA5String()).subtype(
            sizeSpec=constraint.ValueSizeConstraint(1, MAX)
        ),
    ),
)


class LogotypeAudioInfo(univ.Sequence):
    pass


LogotypeAudioInfo.componentType = namedtype.NamedTypes(
    namedtype.NamedType("fileSize", univ.Integer()),
    namedtype.NamedType("playTime", univ.Integer()),
    namedtype.NamedType("channels", univ.Integer()),
    namedtype.OptionalNamedType(
        "sampleRate",
        univ.Integer().subtype(
            implicitTag=tag.Tag(tag.tagClassContext, tag.tagFormatSimple, 3)
        ),
    ),
    namedtype.OptionalNamedType(
        "language",
        char.IA5String().subtype(
            implicitTag=tag.Tag(tag.tagClassContext, tag.tagFormatSimple, 4)
        ),
    ),
)


class LogotypeAudio(univ.Sequence):
    pass


LogotypeAudio.componentType = namedtype.NamedTypes(
    namedtype.NamedType("audioDetails", LogotypeDetails()),
    namedtype.OptionalNamedType("audioInfo", LogotypeAudioInfo()),
)


class LogotypeImageType(univ.Integer):
    pass


LogotypeImageType.namedValues = namedval.NamedValues(("grayScale", 0), ("color", 1))


class LogotypeImageResolution(univ.Choice):
    pass


LogotypeImageResolution.componentType = namedtype.NamedTypes(
    namedtype.NamedType(
        "numBits",
        univ.Integer().subtype(
            implicitTag=tag.Tag(tag.tagClassContext, tag.tagFormatSimple, 1)
        ),
    ),
    namedtype.NamedType(
        "tableSize",
        univ.Integer().subtype(
            implicitTag=tag.Tag(tag.tagClassContext, tag.tagFormatSimple, 2)
        ),
    ),
)


class LogotypeImageInfo(univ.Sequence):
    pass


LogotypeImageInfo.componentType = namedtype.NamedTypes(
    namedtype.DefaultedNamedType(
        "type",
        LogotypeImageType()
        .subtype(implicitTag=tag.Tag(tag.tagClassContext, tag.tagFormatSimple, 0))
        .subtype(value="color"),
    ),
    namedtype.NamedType("fileSize", univ.Integer()),
    namedtype.NamedType("xSize", univ.Integer()),
    namedtype.NamedType("ySize", univ.Integer()),
    namedtype.OptionalNamedType("resolution", LogotypeImageResolution()),
    namedtype.OptionalNamedType(
        "language",
        char.IA5String().subtype(
            implicitTag=tag.Tag(tag.tagClassContext, tag.tagFormatSimple, 4)
        ),
    ),
)


class LogotypeImage(univ.Sequence):
    pass


LogotypeImage.componentType = namedtype.NamedTypes(
    namedtype.NamedType("imageDetails", LogotypeDetails()),
    namedtype.OptionalNamedType("imageInfo", LogotypeImageInfo()),
)


class LogotypeData(univ.Sequence):
    pass


LogotypeData.componentType = namedtype.NamedTypes(
    namedtype.OptionalNamedType(
        "image", univ.SequenceOf(componentType=LogotypeImage())
    ),
    namedtype.OptionalNamedType(
        "audio",
        univ.SequenceOf(componentType=LogotypeAudio()).subtype(
            implicitTag=tag.Tag(tag.tagClassContext, tag.tagFormatSimple, 1)
        ),
    ),
)


class LogotypeReference(univ.Sequence):
    pass


LogotypeReference.componentType = namedtype.NamedTypes(
    namedtype.NamedType(
        "refStructHash",
        univ.SequenceOf(componentType=HashAlgAndValue()).subtype(
            sizeSpec=constraint.ValueSizeConstraint(1, MAX)
        ),
    ),
    namedtype.NamedType(
        "refStructURI",
        univ.SequenceOf(componentType=char.IA5String()).subtype(
            sizeSpec=constraint.ValueSizeConstraint(1, MAX)
        ),
    ),
)


class LogotypeInfo(univ.Choice):
    pass


LogotypeInfo.componentType = namedtype.NamedTypes(
    namedtype.NamedType(
        "direct",
        LogotypeData().subtype(
            implicitTag=tag.Tag(tag.tagClassContext, tag.tagFormatConstructed, 0)
        ),
    ),
    namedtype.NamedType(
        "indirect",
        LogotypeReference().subtype(
            implicitTag=tag.Tag(tag.tagClassContext, tag.tagFormatConstructed, 1)
        ),
    ),
)

# Other logotype type and associated object identifiers

id_logo_background = univ.ObjectIdentifier("1.3.6.1.5.5.7.20.2")

id_logo_loyalty = univ.ObjectIdentifier("1.3.6.1.5.5.7.20.1")

id_logo_certImage = rfc6170.id_logo_certImage


class OtherLogotypeInfo(univ.Sequence):
    pass


OtherLogotypeInfo.componentType = namedtype.NamedTypes(
    namedtype.NamedType("logotypeType", univ.ObjectIdentifier()),
    namedtype.NamedType("info", LogotypeInfo()),
)


# Logotype Certificate Extension

id_pe_logotype = univ.ObjectIdentifier("1.3.6.1.5.5.7.1.12")


class LogotypeExtn(univ.Sequence):
    pass


LogotypeExtn.componentType = namedtype.NamedTypes(
    namedtype.OptionalNamedType(
        "communityLogos",
        univ.SequenceOf(componentType=LogotypeInfo()).subtype(
            explicitTag=tag.Tag(tag.tagClassContext, tag.tagFormatSimple, 0)
        ),
    ),
    namedtype.OptionalNamedType(
        "issuerLogo",
        LogotypeInfo().subtype(
            explicitTag=tag.Tag(tag.tagClassContext, tag.tagFormatConstructed, 1)
        ),
    ),
    namedtype.OptionalNamedType(
        "subjectLogo",
        LogotypeInfo().subtype(
            explicitTag=tag.Tag(tag.tagClassContext, tag.tagFormatConstructed, 2)
        ),
    ),
    namedtype.OptionalNamedType(
        "otherLogos",
        univ.SequenceOf(componentType=OtherLogotypeInfo()).subtype(
            explicitTag=tag.Tag(tag.tagClassContext, tag.tagFormatSimple, 3)
        ),
    ),
)


# Map of Certificate Extension OIDs to Extensions added to the
# ones that are in rfc5280.py

_certificateExtensionsMapUpdate = {
    id_pe_logotype: LogotypeExtn(),
}

rfc5280.certificateExtensionsMap.update(_certificateExtensionsMapUpdate)