Class PEMKey
- java.lang.Object
-
- net.schmizz.sshj.userauth.keyprovider.PEMKey
-
public class PEMKey extends java.lang.ObjectPEM Key container with identified Key Type and decoded body
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPEMKey.PEMKeyType
-
Field Summary
Fields Modifier and Type Field Description private byte[]bodyprivate java.util.List<java.lang.String>headersprivate PEMKey.PEMKeyTypepemKeyType
-
Constructor Summary
Constructors Constructor Description PEMKey(PEMKey.PEMKeyType pemKeyType, java.util.List<java.lang.String> headers, byte[] body)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) byte[]getBody()(package private) java.util.List<java.lang.String>getHeaders()(package private) PEMKey.PEMKeyTypegetPemKeyType()
-
-
-
Field Detail
-
pemKeyType
private final PEMKey.PEMKeyType pemKeyType
-
headers
private final java.util.List<java.lang.String> headers
-
body
private final byte[] body
-
-
Constructor Detail
-
PEMKey
PEMKey(PEMKey.PEMKeyType pemKeyType, java.util.List<java.lang.String> headers, byte[] body)
-
-
Method Detail
-
getPemKeyType
PEMKey.PEMKeyType getPemKeyType()
-
getHeaders
java.util.List<java.lang.String> getHeaders()
-
getBody
byte[] getBody()
-
-