当前位置: 首页>>代码示例>>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;未经允许,请勿转载。