summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2014-01-22 12:44:41 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2014-01-22 12:44:41 +0700
commit2faeff20d0b978ede87b32861478d4b2531ca7a4 (patch)
tree30ec79f5991c0688951500ff578e44d2c4ca0634
parentOverride methods to optimize for LongArray (diff)
downloadBouncyCastle.NET-ed25519-2faeff20d0b978ede87b32861478d4b2531ca7a4.tar.xz
Make public
-rw-r--r--crypto/src/math/ec/multiplier/ECMultiplier.cs2
-rw-r--r--crypto/src/math/ec/multiplier/PreCompInfo.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/math/ec/multiplier/ECMultiplier.cs b/crypto/src/math/ec/multiplier/ECMultiplier.cs

index c6d768ea8..ad576ff55 100644 --- a/crypto/src/math/ec/multiplier/ECMultiplier.cs +++ b/crypto/src/math/ec/multiplier/ECMultiplier.cs
@@ -4,7 +4,7 @@ namespace Org.BouncyCastle.Math.EC.Multiplier * Interface for classes encapsulating a point multiplication algorithm * for <code>ECPoint</code>s. */ - internal interface ECMultiplier + public interface ECMultiplier { /** * Multiplies the <code>ECPoint p</code> by <code>k</code>, i.e. diff --git a/crypto/src/math/ec/multiplier/PreCompInfo.cs b/crypto/src/math/ec/multiplier/PreCompInfo.cs
index d379508c8..5c3289286 100644 --- a/crypto/src/math/ec/multiplier/PreCompInfo.cs +++ b/crypto/src/math/ec/multiplier/PreCompInfo.cs
@@ -5,7 +5,7 @@ namespace Org.BouncyCastle.Math.EC.Multiplier * algorithms. Used as a Memento (see GOF patterns) for * <code>WNafMultiplier</code>. */ - internal interface PreCompInfo + public interface PreCompInfo { } }