From 378482f5a877e34ae9cabade06d6f3111c088f49 Mon Sep 17 00:00:00 2001 From: Peter Dettman Date: Thu, 14 Oct 2021 22:49:24 +0700 Subject: Initial pass at EncodedLength methods --- crypto/src/asn1/DerNull.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'crypto/src/asn1/DerNull.cs') diff --git a/crypto/src/asn1/DerNull.cs b/crypto/src/asn1/DerNull.cs index 01a2e3c72..1ee374db4 100644 --- a/crypto/src/asn1/DerNull.cs +++ b/crypto/src/asn1/DerNull.cs @@ -16,7 +16,12 @@ namespace Org.BouncyCastle.Asn1 { } - internal override void Encode(Asn1OutputStream asn1Out, bool withID) + internal override int EncodedLength(bool withID) + { + return Asn1OutputStream.GetLengthOfEncodingDL(withID, 0); + } + + internal override void Encode(Asn1OutputStream asn1Out, bool withID) { asn1Out.WriteEncodingDL(withID, Asn1Tags.Null, ZeroBytes); } -- cgit 1.4.1