Lines Matching refs:univ
18 from pyasn1.type import univ
21 class ObjectName(univ.ObjectIdentifier):
25 class SimpleSyntax(univ.Choice):
27 namedtype.NamedType('number', univ.Integer()),
28 namedtype.NamedType('string', univ.OctetString()),
29 namedtype.NamedType('object', univ.ObjectIdentifier()),
30 namedtype.NamedType('empty', univ.Null())
34 class IpAddress(univ.OctetString):
35 tagSet = univ.OctetString.tagSet.tagImplicitly(
38 subtypeSpec = univ.Integer.subtypeSpec + constraint.ValueSizeConstraint(
43 class NetworkAddress(univ.Choice):
49 class Counter(univ.Integer):
50 tagSet = univ.Integer.tagSet.tagImplicitly(
53 subtypeSpec = univ.Integer.subtypeSpec + constraint.ValueRangeConstraint(
58 class Gauge(univ.Integer):
59 tagSet = univ.Integer.tagSet.tagImplicitly(
62 subtypeSpec = univ.Integer.subtypeSpec + constraint.ValueRangeConstraint(
67 class TimeTicks(univ.Integer):
68 tagSet = univ.Integer.tagSet.tagImplicitly(
71 subtypeSpec = univ.Integer.subtypeSpec + constraint.ValueRangeConstraint(
76 class Opaque(univ.OctetString):
77 tagSet = univ.OctetString.tagSet.tagImplicitly(
82 class ApplicationSyntax(univ.Choice):
92 class ObjectSyntax(univ.Choice):