All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.gatling.recorder.internal.bouncycastle.jce.interfaces.ECPublicKey Maven / Gradle / Ivy

package io.gatling.recorder.internal.bouncycastle.jce.interfaces;

import java.security.PublicKey;

import io.gatling.recorder.internal.bouncycastle.math.ec.ECPoint;

/**
 * interface for elliptic curve public keys.
 */
public interface ECPublicKey
    extends ECKey, PublicKey
{
    /**
     * return the public point Q
     */
    public ECPoint getQ();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy