Package com.trilead.ssh2.crypto
Class CertificateDecoder
- java.lang.Object
-
- com.trilead.ssh2.crypto.CertificateDecoder
-
public abstract class CertificateDecoder extends Object
- Author:
- Michael Clarke
-
-
Constructor Summary
Constructors Constructor Description CertificateDecoder()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract KeyPaircreateKeyPair(PEMStructure pemStructure)KeyPaircreateKeyPair(PEMStructure pemStructure, String password)abstract StringgetEndLine()abstract StringgetStartLine()
-
-
-
Method Detail
-
getStartLine
public abstract String getStartLine()
-
getEndLine
public abstract String getEndLine()
-
createKeyPair
public KeyPair createKeyPair(PEMStructure pemStructure, String password) throws IOException
- Throws:
IOException
-
createKeyPair
protected abstract KeyPair createKeyPair(PEMStructure pemStructure) throws IOException
- Throws:
IOException
-
-