summaryrefslogtreecommitdiffstats
path: root/bcprov/src/main/java/org/bouncycastle/jce/interfaces/MQVPublicKey.java
blob: 1be14bd0a47b40a03da868f624c2899ebd2d036d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.bouncycastle.jce.interfaces;

import java.security.PublicKey;

/**
 * Static/ephemeral public key pair for use with ECMQV key agreement
 */
public interface MQVPublicKey
    extends PublicKey
{
    /**
     * return the static public key.
     */
    PublicKey getStaticKey();

    /**
     * return the ephemeral public key.
     */
    PublicKey getEphemeralKey();
}