From 96da0eba42bdf27548bbd391237f71905dd5b898 Mon Sep 17 00:00:00 2001 From: David Hook Date: Thu, 6 Jul 2017 11:00:16 +1000 Subject: fixed case of definition --- crypto/src/crypto/macs/DSTU7564Mac.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crypto/src') 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 /// /// Implementation of DSTU7564 mac mode /// - 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; -- cgit 1.5.1