summary refs log tree commit diff
path: root/crypto/src/asn1/pkcs/Pfx.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/asn1/pkcs/Pfx.cs')
-rw-r--r--crypto/src/asn1/pkcs/Pfx.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/asn1/pkcs/Pfx.cs b/crypto/src/asn1/pkcs/Pfx.cs
index c1399e560..67d69a5ae 100644
--- a/crypto/src/asn1/pkcs/Pfx.cs
+++ b/crypto/src/asn1/pkcs/Pfx.cs
@@ -55,7 +55,7 @@ namespace Org.BouncyCastle.Asn1.Pkcs
 
         public override Asn1Object ToAsn1Object()
         {
-            Asn1EncodableVector v = new Asn1EncodableVector(new DerInteger(3), contentInfo);
+            Asn1EncodableVector v = new Asn1EncodableVector(DerInteger.Three, contentInfo);
             v.AddOptional(macData);
             return new BerSequence(v);
         }