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

ElGamalKey.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: e63948360fec4ac58b88c31d19aaf21c4279debb (plain)
1
2
3
4
5
6
7
8
package org.bouncycastle.jce.interfaces;

import org.bouncycastle.jce.spec.ElGamalParameterSpec;

public interface ElGamalKey
{
    public ElGamalParameterSpec getParameters();
}