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

ElGamalPrivateKey.java « interfaces « jce « bouncycastle « org « java « main « src « prov - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 609a2a84a81d7f81b558c6a7a9aeb18415e9e34a (plain)
1
2
3
4
5
6
7
8
9
10
package org.bouncycastle.jce.interfaces;

import java.math.BigInteger;
import java.security.PrivateKey;

public interface ElGamalPrivateKey
    extends ElGamalKey, PrivateKey
{
    public BigInteger getX();
}