Files
hcs/Hcs.Client/GostCryptography/Asn1/Ber/Asn1ChoiceExt.cs
HOME-LAPTOP\kshkulev 33ab055b43 Add project
Basic formatting applied. Unnecessary comments have been removed. Suspicious code is covered by TODO.
2025-08-12 11:21:10 +09:00

24 lines
600 B
C#

using System;
namespace GostCryptography.Asn1.Ber
{
[Serializable]
public class Asn1ChoiceExt : Asn1OpenType
{
public override void Decode(Asn1BerDecodeBuffer buffer, bool explicitTagging, int implicitLength)
{
base.Decode(buffer, false, 0);
}
public override int Encode(Asn1BerEncodeBuffer buffer, bool explicitTagging)
{
return base.Encode(buffer, false);
}
public override void Encode(Asn1BerOutputStream outs, bool explicitTagging)
{
base.Encode(outs, false);
}
}
}