public pkcs10Attribute(asn1.ObjectIdentifier Id = default, slice <asn1.RawValue> Values = default)
 {
     this.Id     = Id;
     this.Values = Values;
 }
 public authorityInfoAccess(asn1.ObjectIdentifier Method = default, asn1.RawValue Location = default)
 {
     this.Method   = Method;
     this.Location = Location;
 }
 public policyInformation(asn1.ObjectIdentifier Policy = default)
 {
     this.Policy = Policy;
 }
Example #4
0
 public ecPrivateKey(long Version = default, slice <byte> PrivateKey = default, asn1.ObjectIdentifier NamedCurveOID = default, asn1.BitString PublicKey = default)
 {
     this.Version       = Version;
     this.PrivateKey    = PrivateKey;
     this.NamedCurveOID = NamedCurveOID;
     this.PublicKey     = PublicKey;
 }
 public AttributeTypeAndValue(asn1.ObjectIdentifier Type = default)
 {
     this.Type = Type;
 }
 public AttributeTypeAndValueSET(asn1.ObjectIdentifier Type = default, slice <slice <AttributeTypeAndValue> > Value = default)
 {
     this.Type  = Type;
     this.Value = Value;
 }
 public AlgorithmIdentifier(asn1.ObjectIdentifier Algorithm = default, asn1.RawValue Parameters = default)
 {
     this.Algorithm  = Algorithm;
     this.Parameters = Parameters;
 }
Example #8
0
 public Extension(asn1.ObjectIdentifier Id = default, bool Critical = default, slice <byte> Value = default)
 {
     this.Id       = Id;
     this.Critical = Critical;
     this.Value    = Value;
 }