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

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

import java.security.PublicKey;
import java.math.BigInteger;

public interface GOST3410PublicKey extends GOST3410Key, PublicKey
{

    public BigInteger getY();
}