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

ECEncryptor.java « ec « crypto « spongycastle « org « java « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ee63720b213722a2a0d36873ba007b5a360ae320 (plain)
1
2
3
4
5
6
7
8
9
10
11
package org.spongycastle.crypto.ec;

import org.spongycastle.crypto.CipherParameters;
import org.spongycastle.math.ec.ECPoint;

public interface ECEncryptor
{
    void init(CipherParameters params);

    ECPair encrypt(ECPoint point);
}