Packages

object SftpIdentity

SFTP identity factory

Source
model.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SftpIdentity
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def createFileSftpIdentity(privateKey: String, privateKeyFilePassphrase: Array[Byte]): KeyFileSftpIdentity

    Create SFTP identity for authenticating using private/public key file

    Create SFTP identity for authenticating using private/public key file

    privateKey

    private key file to use when connecting

    privateKeyFilePassphrase

    password to use to decrypt private key file

  2. def createFileSftpIdentity(privateKey: String): KeyFileSftpIdentity

    Create SFTP identity for authenticating using private/public key file

    Create SFTP identity for authenticating using private/public key file

    privateKey

    private key file to use when connecting

  3. def createRawSftpIdentity(privateKey: Array[Byte], privateKeyFilePassphrase: Array[Byte], publicKey: Array[Byte]): RawKeySftpIdentity

    SFTP identity for authenticating using private/public key value

    SFTP identity for authenticating using private/public key value

    privateKey

    private key value to use when connecting

    privateKeyFilePassphrase

    password to use to decrypt private key

    publicKey

    public key value to use when connecting

  4. def createRawSftpIdentity(privateKey: Array[Byte], privateKeyFilePassphrase: Array[Byte]): RawKeySftpIdentity

    SFTP identity for authenticating using private/public key value

    SFTP identity for authenticating using private/public key value

    privateKey

    private key value to use when connecting

    privateKeyFilePassphrase

    password to use to decrypt private key

  5. def createRawSftpIdentity(privateKey: Array[Byte]): RawKeySftpIdentity

    SFTP identity for authenticating using private/public key value

    SFTP identity for authenticating using private/public key value

    privateKey

    private key value to use when connecting