Interface FileKeyProvider
-
- All Superinterfaces:
KeyProvider
- All Known Implementing Classes:
BaseFileKeyProvider,OpenSSHKeyFile,OpenSSHKeyV1KeyFile,PKCS8KeyFile,PuTTYKeyFile
public interface FileKeyProvider extends KeyProvider
A file key provider is initialized with a location of
-
-
Method Summary
Modifier and Type Method Description voidinit(java.io.File location)voidinit(java.io.File location, PasswordFinder pwdf)voidinit(java.io.Reader location)voidinit(java.io.Reader privateKey, java.io.Reader publicKey)voidinit(java.io.Reader privateKey, java.io.Reader publicKey, PasswordFinder pwdf)voidinit(java.io.Reader location, PasswordFinder pwdf)voidinit(java.lang.String privateKey, java.lang.String publicKey)voidinit(java.lang.String privateKey, java.lang.String publicKey, PasswordFinder pwdf)-
Methods inherited from interface net.schmizz.sshj.userauth.keyprovider.KeyProvider
getPrivate, getPublic, getType
-
-
-
-
Method Detail
-
init
void init(java.io.File location)
-
init
void init(java.io.File location, PasswordFinder pwdf)
-
init
void init(java.io.Reader location)
-
init
void init(java.io.Reader privateKey, java.io.Reader publicKey)
-
init
void init(java.io.Reader privateKey, java.io.Reader publicKey, PasswordFinder pwdf)
-
init
void init(java.io.Reader location, PasswordFinder pwdf)
-
init
void init(java.lang.String privateKey, java.lang.String publicKey)
-
init
void init(java.lang.String privateKey, java.lang.String publicKey, PasswordFinder pwdf)
-
-