diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2018-07-10 23:09:14 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2018-07-10 23:09:14 +0700 |
commit | 4337e11281c280f8c3821087a1b780c83379242c (patch) | |
tree | 7a0a524fa8f5d23d1a42c2eff2387aa9b2b1f50d /crypto | |
parent | Clear buffer after literal data copy (diff) | |
download | BouncyCastle.NET-ed25519-4337e11281c280f8c3821087a1b780c83379242c.tar.xz |
Make members private
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/src/crypto/engines/Cast5Engine.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/crypto/engines/Cast5Engine.cs b/crypto/src/crypto/engines/Cast5Engine.cs index 53836db02..398f6d43a 100644 --- a/crypto/src/crypto/engines/Cast5Engine.cs +++ b/crypto/src/crypto/engines/Cast5Engine.cs @@ -20,7 +20,7 @@ namespace Org.BouncyCastle.Crypto.Engines public class Cast5Engine : IBlockCipher { - internal static readonly uint[] S1 = + private static readonly uint[] S1 = { 0x30fb40d4, 0x9fa0ff0b, 0x6beccd2f, 0x3f258c7a, 0x1e213f2f, 0x9c004dd3, 0x6003e540, 0xcf9fc949, 0xbfd4af27, 0x88bbbdb5, 0xe2034090, 0x98d09675, 0x6e63a0e0, 0x15c361d2, 0xc2e7661d, 0x22d4ff8e, |