init commit

This commit is contained in:
2025-10-09 09:57:24 +09:00
commit 4d551bd74f
6636 changed files with 1218703 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
using System;
using Org.BouncyCastle.Utilities;
namespace Org.BouncyCastle.Asn1.Cmp;
public class ProtectedPart : Asn1Encodable
{
private readonly PkiHeader header;
private readonly PkiBody body;
public virtual PkiHeader Header => header;
public virtual PkiBody Body => body;
private ProtectedPart(Asn1Sequence seq)
{
header = PkiHeader.GetInstance(seq[0]);
body = PkiBody.GetInstance(seq[1]);
}
public static ProtectedPart GetInstance(object obj)
{
if (obj is ProtectedPart)
{
return (ProtectedPart)obj;
}
if (obj is Asn1Sequence)
{
return new ProtectedPart((Asn1Sequence)obj);
}
throw new ArgumentException("Invalid object: " + Platform.GetTypeName(obj), "obj");
}
public ProtectedPart(PkiHeader header, PkiBody body)
{
this.header = header;
this.body = body;
}
public override Asn1Object ToAsn1Object()
{
return new DerSequence(header, body);
}
}