diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2014-01-22 12:44:41 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2014-01-22 12:44:41 +0700 |
commit | 2faeff20d0b978ede87b32861478d4b2531ca7a4 (patch) | |
tree | 30ec79f5991c0688951500ff578e44d2c4ca0634 /crypto/src/math/ec | |
parent | Override methods to optimize for LongArray (diff) | |
download | BouncyCastle.NET-ed25519-2faeff20d0b978ede87b32861478d4b2531ca7a4.tar.xz |
Make public
Diffstat (limited to 'crypto/src/math/ec')
-rw-r--r-- | crypto/src/math/ec/multiplier/ECMultiplier.cs | 2 | ||||
-rw-r--r-- | crypto/src/math/ec/multiplier/PreCompInfo.cs | 2 |
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 { } } |