Class ServerSignatureAlgorithms
- java.lang.Object
-
- org.apache.sshd.common.kex.extension.parser.AbstractKexExtensionParser<List<String>>
-
- org.apache.sshd.common.kex.extension.parser.ServerSignatureAlgorithms
-
- All Implemented Interfaces:
KexExtensionParser<List<String>>
,NamedResource
public class ServerSignatureAlgorithms extends AbstractKexExtensionParser<List<String>>
- Author:
- Apache MINA SSHD Project
- See Also:
- RFC-8308 - section 3.1
-
-
Field Summary
Fields Modifier and Type Field Description static ServerSignatureAlgorithms
INSTANCE
static String
NAME
-
Fields inherited from interface org.apache.sshd.common.NamedResource
BY_NAME_COMPARATOR, NAME_EXTRACTOR
-
-
Constructor Summary
Constructors Constructor Description ServerSignatureAlgorithms()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
encode(List<String> names, Buffer buffer)
List<String>
parseExtension(byte[] data, int off, int len)
List<String>
parseExtension(Buffer buffer)
-
Methods inherited from class org.apache.sshd.common.kex.extension.parser.AbstractKexExtensionParser
getName, putExtension
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.sshd.common.kex.extension.KexExtensionParser
parseExtension
-
-
-
-
Field Detail
-
NAME
public static final String NAME
- See Also:
- Constant Field Values
-
INSTANCE
public static final ServerSignatureAlgorithms INSTANCE
-
-
Method Detail
-
parseExtension
public List<String> parseExtension(byte[] data, int off, int len) throws IOException
- Throws:
IOException
-
parseExtension
public List<String> parseExtension(Buffer buffer) throws IOException
- Throws:
IOException
-
encode
protected void encode(List<String> names, Buffer buffer) throws IOException
- Specified by:
encode
in classAbstractKexExtensionParser<List<String>>
- Throws:
IOException
-
-