summary refs log tree commit diff
path: root/crypto/src/asn1/icao/LDSSecurityObject.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/asn1/icao/LDSSecurityObject.cs')
-rw-r--r--crypto/src/asn1/icao/LDSSecurityObject.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/asn1/icao/LDSSecurityObject.cs b/crypto/src/asn1/icao/LDSSecurityObject.cs
index 9fcb4e5b9..59a3d0550 100644
--- a/crypto/src/asn1/icao/LDSSecurityObject.cs
+++ b/crypto/src/asn1/icao/LDSSecurityObject.cs
@@ -64,7 +64,7 @@ namespace Org.BouncyCastle.Asn1.Icao
 
         public LdsSecurityObject(AlgorithmIdentifier digestAlgorithmIdentifier, DataGroupHash[] datagroupHash)
         {
-            m_version = new DerInteger(0);
+            m_version = DerInteger.Zero;
 			m_hashAlgorithm = digestAlgorithmIdentifier ?? throw new ArgumentNullException(nameof(digestAlgorithmIdentifier)); ;
 			m_datagroupHashValues = datagroupHash ?? throw new ArgumentNullException(nameof(datagroupHash));
             m_ldsVersionInfo = null;
@@ -75,7 +75,7 @@ namespace Org.BouncyCastle.Asn1.Icao
         public LdsSecurityObject(AlgorithmIdentifier digestAlgorithmIdentifier, DataGroupHash[] datagroupHash,
             LdsVersionInfo versionInfo)
         {
-            m_version = new DerInteger(1);
+            m_version = DerInteger.One;
             m_hashAlgorithm = digestAlgorithmIdentifier ?? throw new ArgumentNullException(nameof(digestAlgorithmIdentifier)); ;
             m_datagroupHashValues = datagroupHash ?? throw new ArgumentNullException(nameof(datagroupHash));
             m_ldsVersionInfo = versionInfo;