Interface PublicKeyFactory
-
- All Known Implementing Classes:
JcaPublicKeyFactory
public interface PublicKeyFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PublicKeycreate(byte[] encoded)PublicKeycreate(String pem)RSAPublicKeycreate(BigInteger modulus, BigInteger publicExponent)ECPublicKeycreate(BigInteger x, BigInteger y, org.apache.sshd.common.cipher.ECCurves ecCurve)
-
-
-
Method Detail
-
create
PublicKey create(byte[] encoded)
-
create
RSAPublicKey create(BigInteger modulus, BigInteger publicExponent)
-
create
ECPublicKey create(BigInteger x, BigInteger y, org.apache.sshd.common.cipher.ECCurves ecCurve)
-
-