summary refs log tree commit diff
path: root/crypto/src/util/Arrays.cs
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2023-01-30 18:54:08 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2023-01-30 18:54:08 +0700
commitf82c115316bcbf98fae46cb6fd90a8e5a57fdef2 (patch)
tree83210fc79b5e0bdf0716f6e32e76b2db26cc30a3 /crypto/src/util/Arrays.cs
parentChange method names (diff)
downloadBouncyCastle.NET-ed25519-f82c115316bcbf98fae46cb6fd90a8e5a57fdef2.tar.xz
Misc. cleanup after bc-fips-csharp updates
Diffstat (limited to 'crypto/src/util/Arrays.cs')
-rw-r--r--crypto/src/util/Arrays.cs8
1 files changed, 2 insertions, 6 deletions
diff --git a/crypto/src/util/Arrays.cs b/crypto/src/util/Arrays.cs

index 41e3c3195..a9ae6724a 100644 --- a/crypto/src/util/Arrays.cs +++ b/crypto/src/util/Arrays.cs
@@ -606,9 +606,7 @@ namespace Org.BouncyCastle.Utilities return false; } - public static void Fill( - byte[] buf, - byte b) + public static void Fill(byte[] buf, byte b) { int i = buf.Length; while (i > 0) @@ -618,9 +616,7 @@ namespace Org.BouncyCastle.Utilities } [CLSCompliant(false)] - public static void Fill( - ulong[] buf, - ulong b) + public static void Fill(ulong[] buf, ulong b) { int i = buf.Length; while (i > 0)