summary refs log tree commit diff
path: root/crypto/src/asn1/crmf/PKIPublicationInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/asn1/crmf/PKIPublicationInfo.cs')
-rw-r--r--crypto/src/asn1/crmf/PKIPublicationInfo.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/asn1/crmf/PKIPublicationInfo.cs b/crypto/src/asn1/crmf/PKIPublicationInfo.cs
index 5cc1df013..3c12dffa5 100644
--- a/crypto/src/asn1/crmf/PKIPublicationInfo.cs
+++ b/crypto/src/asn1/crmf/PKIPublicationInfo.cs
@@ -19,8 +19,8 @@ namespace Org.BouncyCastle.Asn1.Crmf
     public class PkiPublicationInfo
         : Asn1Encodable
     {
-        public static readonly DerInteger DontPublish = new DerInteger(0);
-        public static readonly DerInteger PleasePublish = new DerInteger(1);
+        public static readonly DerInteger DontPublish = DerInteger.Zero;
+        public static readonly DerInteger PleasePublish = DerInteger.One;
 
         public static PkiPublicationInfo GetInstance(object obj)
         {