org.bouncycastle.crypto.ec.ECPairFactorTransform.java Source code

Java tutorial

Introduction

Here is the source code for org.bouncycastle.crypto.ec.ECPairFactorTransform.java

Source

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();
}