aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/java/org/spongycastle/crypto/ec/ECPairTransform.java
blob: 209937cd9e36d6bf0816b662ed373e7a4edf3e20 (plain)
1
2
3
4
5
6
7
8
9
10
package org.spongycastle.crypto.ec;

import org.spongycastle.crypto.CipherParameters;

public interface ECPairTransform
{
    void init(CipherParameters params);

    ECPair transform(ECPair cipherText);
}