Interface HostKeyCertificateProvider
-
- All Known Implementing Classes:
FileHostKeyCertificateProvider
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface HostKeyCertificateProvider
- Author:
- Apache MINA SSHD Project
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default OpenSshCertificate
loadCertificate(SessionContext session, String keyType)
Iterable<OpenSshCertificate>
loadCertificates(SessionContext session)
-
-
-
Method Detail
-
loadCertificates
Iterable<OpenSshCertificate> loadCertificates(SessionContext session) throws IOException, GeneralSecurityException
- Throws:
IOException
GeneralSecurityException
-
loadCertificate
default OpenSshCertificate loadCertificate(SessionContext session, String keyType) throws IOException, GeneralSecurityException
- Throws:
IOException
GeneralSecurityException
-
-