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,50 @@
namespace Org.BouncyCastle.Asn1.Pkcs;
public class SafeBag : Asn1Encodable
{
private readonly DerObjectIdentifier bagID;
private readonly Asn1Object bagValue;
private readonly Asn1Set bagAttributes;
public DerObjectIdentifier BagID => bagID;
public Asn1Object BagValue => bagValue;
public Asn1Set BagAttributes => bagAttributes;
public SafeBag(DerObjectIdentifier oid, Asn1Object obj)
{
bagID = oid;
bagValue = obj;
bagAttributes = null;
}
public SafeBag(DerObjectIdentifier oid, Asn1Object obj, Asn1Set bagAttributes)
{
bagID = oid;
bagValue = obj;
this.bagAttributes = bagAttributes;
}
public SafeBag(Asn1Sequence seq)
{
bagID = (DerObjectIdentifier)seq[0];
bagValue = ((DerTaggedObject)seq[1]).GetObject();
if (seq.Count == 3)
{
bagAttributes = (Asn1Set)seq[2];
}
}
public override Asn1Object ToAsn1Object()
{
Asn1EncodableVector asn1EncodableVector = new Asn1EncodableVector(bagID, new DerTaggedObject(0, bagValue));
if (bagAttributes != null)
{
asn1EncodableVector.Add(bagAttributes);
}
return new DerSequence(asn1EncodableVector);
}
}