summary refs log tree commit diff
diff options
context:
space:
mode:
authorDavid Hook <dgh@bouncycastle.org>2017-07-06 11:00:16 +1000
committerDavid Hook <dgh@bouncycastle.org>2017-07-06 11:00:16 +1000
commit96da0eba42bdf27548bbd391237f71905dd5b898 (patch)
tree7d4743a9725659cf3e8ef5cb285ed97f82d313d5
parentadded missing null check (diff)
downloadBouncyCastle.NET-ed25519-96da0eba42bdf27548bbd391237f71905dd5b898.tar.xz
fixed case of definition
-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;