Interface OpenSSHKdfOptions
-
- All Superinterfaces:
NamedResource
,OpenSSHKeyDecryptor
- All Known Implementing Classes:
BCryptKdfOptions
,RawKdfOptions
public interface OpenSSHKdfOptions extends NamedResource, OpenSSHKeyDecryptor
-
-
Field Summary
Fields Modifier and Type Field Description static java.util.function.Predicate<java.lang.String>
IS_NONE_KDF
static int
MAX_KDF_NAME_LENGTH
static int
MAX_KDF_OPTIONS_SIZE
static java.lang.String
NONE_KDF
-
Fields inherited from interface org.apache.sshd.common.NamedResource
BY_NAME_COMPARATOR, NAME_EXTRACTOR
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
initialize(java.lang.String name, byte[] kdfOptions)
-
Methods inherited from interface org.apache.sshd.common.NamedResource
getName
-
Methods inherited from interface org.apache.sshd.common.config.keys.loader.openssh.OpenSSHKeyDecryptor
decodePrivateKeyBytes, isEncrypted
-
-
-
-
Field Detail
-
MAX_KDF_NAME_LENGTH
static final int MAX_KDF_NAME_LENGTH
- See Also:
- Constant Field Values
-
MAX_KDF_OPTIONS_SIZE
static final int MAX_KDF_OPTIONS_SIZE
- See Also:
- Constant Field Values
-
NONE_KDF
static final java.lang.String NONE_KDF
- See Also:
- Constant Field Values
-
IS_NONE_KDF
static final java.util.function.Predicate<java.lang.String> IS_NONE_KDF
-
-