summaryrefslogtreecommitdiffstats
path: root/bcprov/src/main/java/org/bouncycastle/jce/interfaces/GOST3410PublicKey.java
blob: 447cec2b32ac3b74762ff052bd91d186132a55e7 (plain)
1
2
3
4
5
6
7
8
9
10
package org.bouncycastle.jce.interfaces;

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

public interface GOST3410PublicKey extends GOST3410Key, PublicKey
{

    public BigInteger getY();
}