aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/java/org/spongycastle/crypto/ec/ECPairFactorTransform.java
blob: db1c8ce5af731d0067d0d53e1d92bffad5100eb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.spongycastle.crypto.ec;

import java.math.BigInteger;

public interface ECPairFactorTransform
    extends ECPairTransform
{
    /**
     * Return the last value used to calculated a transform.
     *
     * @return a BigInteger representing the last transform value used.
     */
    BigInteger getTransformValue();
}