summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--crypto/src/crypto/macs/DSTU7564Mac.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/crypto/macs/DSTU7564Mac.cs b/crypto/src/crypto/macs/DSTU7564Mac.cs
index a5f984270..907355487 100644
--- a/crypto/src/crypto/macs/DSTU7564Mac.cs
+++ b/crypto/src/crypto/macs/DSTU7564Mac.cs
@@ -9,7 +9,7 @@ namespace Org.BouncyCastle.Crypto.Macs
      /// <summary>
      /// Implementation of DSTU7564 mac mode
      /// </summary>
-     public class DSTU7564Mac : IMac
+     public class Dstu7564Mac : IMac
      {
           private Dstu7564Digest engine;
           private int macSize;
@@ -28,7 +28,7 @@ namespace Org.BouncyCastle.Crypto.Macs
             }
         }
 
-        public DSTU7564Mac(int macSizeBits)
+        public Dstu7564Mac(int macSizeBits)
           {
             engine = new Dstu7564Digest(macSizeBits);
             macSize = macSizeBits / 8;