當前位置: 首頁>>代碼示例>>C#>>正文


C# Asn1Encodable.GetDerEncoded方法代碼示例

本文整理匯總了C#中Org.BouncyCastle.Asn1.Asn1Encodable.GetDerEncoded方法的典型用法代碼示例。如果您正苦於以下問題:C# Asn1Encodable.GetDerEncoded方法的具體用法?C# Asn1Encodable.GetDerEncoded怎麽用?C# Asn1Encodable.GetDerEncoded使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Org.BouncyCastle.Asn1.Asn1Encodable的用法示例。


在下文中一共展示了Asn1Encodable.GetDerEncoded方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: DerApplicationSpecific

        public DerApplicationSpecific(
            int				tag,
            Asn1Encodable	obj)
        {
            this.tag = tag | Asn1Tags.Constructed;

            this.octets = obj.GetDerEncoded();
        }
開發者ID:hjgode,項目名稱:iTextSharpCF,代碼行數:8,代碼來源:DerApplicationSpecific.cs

示例2: Asn1OctetString

 internal Asn1OctetString(
     Asn1Encodable obj)
 {
     try
     {
         this.str = obj.GetDerEncoded();
     }
     catch (IOException e)
     {
         throw new ArgumentException("Error processing object : " + e.ToString());
     }
 }
開發者ID:Noyabronok,項目名稱:itextsharpml,代碼行數:12,代碼來源:Asn1OctetString.cs

示例3: DerApplicationSpecific

		public DerApplicationSpecific(
			bool			isExplicit,
			int				tag,
			Asn1Encodable	obj)
		{
			byte[] data = obj.GetDerEncoded();

			this.isConstructed = isExplicit;
			this.tag = tag;

			if (isExplicit)
			{
				this.octets = data;
			}
			else
			{
				int lenBytes = GetLengthOfLength(data);
				byte[] tmp = new byte[data.Length - lenBytes];
				Array.Copy(data, lenBytes, tmp, 0, tmp.Length);
				this.octets = tmp;
			}
		}
開發者ID:ktw,項目名稱:OutlookPrivacyPlugin,代碼行數:22,代碼來源:DerApplicationSpecific.cs

示例4: GetSignatureForObject

		internal static byte[] GetSignatureForObject(
			DerObjectIdentifier		sigOid, // TODO Redundant now?
			string					sigName,
			AsymmetricKeyParameter	privateKey,
			SecureRandom			random,
			Asn1Encodable			ae)
		{
			if (sigOid == null)
				throw new ArgumentNullException("sigOid");

			ISigner sig = SignerUtilities.GetSigner(sigName);

			if (random != null)
			{
				sig.Init(true, new ParametersWithRandom(privateKey, random));
			}
			else
			{
				sig.Init(true, privateKey);
			}

			byte[] encoded = ae.GetDerEncoded();
			sig.BlockUpdate(encoded, 0, encoded.Length);

			return sig.GenerateSignature();
		}
開發者ID:MBrekhof,項目名稱:pleiobox-clients,代碼行數:26,代碼來源:X509Utilities.cs

示例5: DerBitString

 public DerBitString(
     Asn1Encodable obj)
 {
     this.data = obj.GetDerEncoded();
     //            this.padBits = 0;
 }
開發者ID:hjgode,項目名稱:iTextSharpCF,代碼行數:6,代碼來源:DerBitString.cs

示例6: WriteEncodable

		private static void WriteEncodable(MemoryStream ms, Asn1Encodable e)
		{
			if (e != null)
			{
				byte[] bs = e.GetDerEncoded();
				ms.Write(bs, 0, bs.Length);
			}
		}
開發者ID:MBrekhof,項目名稱:pleiobox-clients,代碼行數:8,代碼來源:DERExternal.cs

示例7: DerBitString

        public DerBitString(
			Asn1Encodable obj)
            : this(obj.GetDerEncoded())
		{
		}
開發者ID:KimikoMuffin,項目名稱:bc-csharp,代碼行數:5,代碼來源:DerBitString.cs


注:本文中的Org.BouncyCastle.Asn1.Asn1Encodable.GetDerEncoded方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。