Package com.trilead.ssh2.crypto
Class CertificateDecoder
- java.lang.Object
-
- com.trilead.ssh2.crypto.CertificateDecoder
-
public abstract class CertificateDecoder extends java.lang.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 java.security.KeyPaircreateKeyPair(PEMStructure pemStructure)java.security.KeyPaircreateKeyPair(PEMStructure pemStructure, java.lang.String password)abstract java.lang.StringgetEndLine()abstract java.lang.StringgetStartLine()
-
-
-
Method Detail
-
getStartLine
public abstract java.lang.String getStartLine()
-
getEndLine
public abstract java.lang.String getEndLine()
-
createKeyPair
public java.security.KeyPair createKeyPair(PEMStructure pemStructure, java.lang.String password) throws java.io.IOException
- Throws:
java.io.IOException
-
createKeyPair
protected abstract java.security.KeyPair createKeyPair(PEMStructure pemStructure) throws java.io.IOException
- Throws:
java.io.IOException
-
-