The Holder object.
 Holder ::= SEQUENCE { baseCertificateID   [0] IssuerSerial OPTIONAL, -- the issuer and serial number of -- the holder's Public Key Certificate entityName          [1] GeneralNames OPTIONAL, -- the name of the claimant or role objectDigestInfo    [2] ObjectDigestInfo OPTIONAL -- used to directly authenticate the holder, -- for example, an executable } 
Inheritance: IX509Selector
コード例 #1
0
        public override bool Equals(object obj)
        {
            if (obj == this)
            {
                return(true);
            }
            if (!(obj is AttributeCertificateHolder))
            {
                return(false);
            }
            AttributeCertificateHolder attributeCertificateHolder = (AttributeCertificateHolder)obj;

            return(this.holder.Equals(attributeCertificateHolder.holder));
        }
コード例 #2
0
 /// <summary>Set the Holder of this Attribute Certificate.</summary>
 public void SetHolder(
     AttributeCertificateHolder holder)
 {
     acInfoGen.SetHolder(holder.holder);
 }
コード例 #3
0
		/// <summary>Set the Holder of this Attribute Certificate.</summary>
		public void SetHolder(
			AttributeCertificateHolder holder)
		{
			acInfoGen.SetHolder(holder.holder);
		}