diff options
author | David Hook <dgh@bouncycastle.org> | 2017-07-06 11:00:16 +1000 |
---|---|---|
committer | David Hook <dgh@bouncycastle.org> | 2017-07-06 11:00:16 +1000 |
commit | 96da0eba42bdf27548bbd391237f71905dd5b898 (patch) | |
tree | 7d4743a9725659cf3e8ef5cb285ed97f82d313d5 /crypto/src | |
parent | added missing null check (diff) | |
download | BouncyCastle.NET-ed25519-96da0eba42bdf27548bbd391237f71905dd5b898.tar.xz |
fixed case of definition
Diffstat (limited to 'crypto/src')
-rw-r--r-- | crypto/src/crypto/macs/DSTU7564Mac.cs | 4 |
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; |