Interface IdentityResourceLoader<PUB extends PublicKey,PRV extends PrivateKey>
-
- Type Parameters:
PUB
- Type ofPublicKey
PRV
- Type ofPrivateKey
- All Superinterfaces:
KeyTypeNamesSupport
- All Known Subinterfaces:
KeyEntryResolver<PUB,PRV>
,PrivateKeyEntryDecoder<PUB,PRV>
,PublicKeyEntryDecoder<PUB,PRV>
,PuttyKeyPairResourceParser<PUB,PRV>
- All Known Implementing Classes:
AbstractIdentityResourceLoader
,AbstractKeyEntryResolver
,AbstractPrivateKeyEntryDecoder
,AbstractPublicKeyEntryDecoder
,AbstractPuttyKeyDecoder
,DSSPublicKeyEntryDecoder
,DSSPuttyKeyDecoder
,ECDSAPublicKeyEntryDecoder
,ECDSAPuttyKeyDecoder
,Ed25519PublicKeyDecoder
,EdDSAPuttyKeyDecoder
,OpenSSHDSSPrivateKeyEntryDecoder
,OpenSSHECDSAPrivateKeyEntryDecoder
,OpenSSHEd25519PrivateKeyEntryDecoder
,OpenSSHRSAPrivateKeyDecoder
,RSAPublicKeyDecoder
,RSAPuttyKeyDecoder
public interface IdentityResourceLoader<PUB extends PublicKey,PRV extends PrivateKey> extends KeyTypeNamesSupport
- Author:
- Apache MINA SSHD Project
-
-
Field Summary
Fields Modifier and Type Field Description static int
MAX_BIGINT_OCTETS_COUNT
A reasonable max.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Class<PRV>
getPrivateKeyType()
Class<PUB>
getPublicKeyType()
-
Methods inherited from interface org.apache.sshd.common.config.keys.KeyTypeNamesSupport
getSupportedKeyTypes
-
-
-
-
Field Detail
-
MAX_BIGINT_OCTETS_COUNT
static final int MAX_BIGINT_OCTETS_COUNT
A reasonable max. number of octets used for aBigInteger
in the context of keys based on such numbers- See Also:
- Constant Field Values
-
-