Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ECPairFactorTransform.java « ec « crypto « bouncycastle « org « java « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: be4855189395c22b4522c42abc53f452d15d1792 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.bouncycastle.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();
}