public static enum ZrtpConstants.SupportedPubKeys extends Enum<ZrtpConstants.SupportedPubKeys>
| Modifier and Type | Field and Description |
|---|---|
org.bouncycastle.math.ec.ECCurve |
curve |
org.bouncycastle.crypto.BasicAgreement |
dhContext |
org.bouncycastle.crypto.AsymmetricCipherKeyPairGenerator |
keyPairGen |
byte[] |
name |
int |
pubKeySize |
org.bouncycastle.crypto.RawAgreement |
rawDhContext |
org.bouncycastle.crypto.params.DHParameters |
specDh |
| Modifier and Type | Method and Description |
|---|---|
static ZrtpConstants.SupportedPubKeys |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ZrtpConstants.SupportedPubKeys[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ZrtpConstants.SupportedPubKeys EC25
public static final ZrtpConstants.SupportedPubKeys EC38
public static final ZrtpConstants.SupportedPubKeys E255
public static final ZrtpConstants.SupportedPubKeys DH2K
public static final ZrtpConstants.SupportedPubKeys DH3K
public static final ZrtpConstants.SupportedPubKeys MULT
public byte[] name
public final org.bouncycastle.crypto.AsymmetricCipherKeyPairGenerator keyPairGen
public final int pubKeySize
public final org.bouncycastle.crypto.params.DHParameters specDh
public final org.bouncycastle.math.ec.ECCurve curve
public final org.bouncycastle.crypto.BasicAgreement dhContext
public final org.bouncycastle.crypto.RawAgreement rawDhContext
public static ZrtpConstants.SupportedPubKeys[] values()
for (ZrtpConstants.SupportedPubKeys c : ZrtpConstants.SupportedPubKeys.values()) System.out.println(c);
public static ZrtpConstants.SupportedPubKeys valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.