Uses of Class
net.schmizz.sshj.common.Buffer
-
Packages that use Buffer Package Description com.hierynomus.sshj.key net.schmizz.sshj.common net.schmizz.sshj.sftp net.schmizz.sshj.transport net.schmizz.sshj.transport.compression -
-
Uses of Buffer in com.hierynomus.sshj.key
Methods in com.hierynomus.sshj.key with parameters of type Buffer Modifier and Type Method Description void
BaseKeyAlgorithm. putPubKeyIntoBuffer(java.security.PublicKey pk, Buffer<?> buf)
void
KeyAlgorithm. putPubKeyIntoBuffer(java.security.PublicKey pk, Buffer<?> buf)
java.security.PublicKey
BaseKeyAlgorithm. readPubKeyFromBuffer(Buffer<?> buf)
java.security.PublicKey
KeyAlgorithm. readPubKeyFromBuffer(Buffer<?> buf)
-
Uses of Buffer in net.schmizz.sshj.common
Classes in net.schmizz.sshj.common with type parameters of type Buffer Modifier and Type Class Description class
Buffer<T extends Buffer<T>>
Subclasses of Buffer in net.schmizz.sshj.common Modifier and Type Class Description static class
Buffer.PlainBuffer
class
SSHPacket
Methods in net.schmizz.sshj.common with parameters of type Buffer Modifier and Type Method Description T
Buffer. putBuffer(Buffer<? extends Buffer<?>> buffer)
Copies the contents of provided buffer into this buffervoid
KeyType. putPubKeyIntoBuffer(java.security.PublicKey pk, Buffer<?> buf)
(package private) static <T extends java.security.PublicKey>
Certificate<T>KeyType.CertUtils. readPubKey(Buffer<?> buf, KeyType innerKeyType)
(package private) static java.security.PublicKey
ECDSAVariationsAdapter. readPubKeyFromBuffer(Buffer<?> buf, java.lang.String variation)
abstract java.security.PublicKey
KeyType. readPubKeyFromBuffer(Buffer<?> buf)
(package private) static void
ECDSAVariationsAdapter. writePubKeyContentsIntoBuffer(java.security.PublicKey pk, Buffer<?> buf)
(package private) static void
KeyType.CertUtils. writePubKeyContentsIntoBuffer(java.security.PublicKey publicKey, KeyType innerKeyType, Buffer<?> buf)
protected abstract void
KeyType. writePubKeyContentsIntoBuffer(java.security.PublicKey pk, Buffer<?> buf)
Method parameters in net.schmizz.sshj.common with type arguments of type Buffer Modifier and Type Method Description T
Buffer. putBuffer(Buffer<? extends Buffer<?>> buffer)
Copies the contents of provided buffer into this bufferConstructors in net.schmizz.sshj.common with parameters of type Buffer Constructor Description Buffer(Buffer<?> from)
PlainBuffer(Buffer<?> from)
-
Uses of Buffer in net.schmizz.sshj.sftp
Subclasses of Buffer in net.schmizz.sshj.sftp Modifier and Type Class Description class
Request
class
Response
class
SFTPPacket<T extends SFTPPacket<T>>
Constructors in net.schmizz.sshj.sftp with parameters of type Buffer Constructor Description Response(Buffer<Response> pk, int protocolVersion)
SFTPPacket(Buffer<T> buf)
-
Uses of Buffer in net.schmizz.sshj.transport
Methods in net.schmizz.sshj.transport with parameters of type Buffer Modifier and Type Method Description protected void
Encoder. aeadOutgoingBuffer(Buffer<?> buf, int offset, int len)
-
Uses of Buffer in net.schmizz.sshj.transport.compression
Methods in net.schmizz.sshj.transport.compression with parameters of type Buffer Modifier and Type Method Description void
Compression. compress(Buffer buffer)
Compress the given buffer in place.void
ZlibCompression. compress(Buffer buffer)
void
Compression. uncompress(Buffer from, Buffer to)
Uncompress the data in a buffer into another buffer.void
ZlibCompression. uncompress(Buffer from, Buffer to)
-