Uses of Interface
org.apache.sshd.common.mac.Mac
-
Packages that use Mac Package Description org.apache.sshd.client.config.hosts org.apache.sshd.client.keyverifier org.apache.sshd.common org.apache.sshd.common.cipher Cipherimplementations.org.apache.sshd.common.kex org.apache.sshd.common.mac Macimplementations.org.apache.sshd.common.session.helpers -
-
Uses of Mac in org.apache.sshd.client.config.hosts
Fields in org.apache.sshd.client.config.hosts with type parameters of type Mac Modifier and Type Field Description static NamedFactory<Mac>KnownHostHashValue. DEFAULT_DIGESTprivate NamedFactory<Mac>KnownHostHashValue. digesterprivate Factory<Mac>KnownHostDigest. factoryMethods in org.apache.sshd.client.config.hosts that return Mac Modifier and Type Method Description MacKnownHostDigest. create()Methods in org.apache.sshd.client.config.hosts that return types with arguments of type Mac Modifier and Type Method Description NamedFactory<Mac>KnownHostHashValue. getDigester()Methods in org.apache.sshd.client.config.hosts with parameters of type Mac Modifier and Type Method Description static byte[]KnownHostHashValue. calculateHashValue(java.lang.String host, int port, Mac mac, byte[] salt)Method parameters in org.apache.sshd.client.config.hosts with type arguments of type Mac Modifier and Type Method Description static byte[]KnownHostHashValue. calculateHashValue(java.lang.String host, int port, Factory<? extends Mac> factory, byte[] salt)voidKnownHostHashValue. setDigester(NamedFactory<Mac> digester)Constructor parameters in org.apache.sshd.client.config.hosts with type arguments of type Mac Constructor Description KnownHostDigest(java.lang.String name, Factory<Mac> factory) -
Uses of Mac in org.apache.sshd.client.keyverifier
Methods in org.apache.sshd.client.keyverifier that return types with arguments of type Mac Modifier and Type Method Description protected NamedFactory<Mac>KnownHostsServerKeyVerifier. getHostValueDigester(ClientSession clientSession, java.net.SocketAddress remoteAddress, SshdSocketAddress hostIdentity)Invoked byKnownHostsServerKeyVerifier.prepareKnownHostEntry(ClientSession, SocketAddress, PublicKey)in order to query whether to use a hashed value instead of a plain one for the written host name/address - default returnsnull- i.e., no hashing -
Uses of Mac in org.apache.sshd.common
Fields in org.apache.sshd.common with type parameters of type Mac Modifier and Type Field Description protected java.util.List<NamedFactory<Mac>>BaseBuilder. macFactoriesMethods in org.apache.sshd.common that return types with arguments of type Mac Modifier and Type Method Description static java.util.List<NamedFactory<Mac>>BaseBuilder. setUpDefaultMacs(boolean ignoreUnsupported)Method parameters in org.apache.sshd.common with type arguments of type Mac Modifier and Type Method Description SBaseBuilder. macFactories(java.util.List<NamedFactory<Mac>> macFactories) -
Uses of Mac in org.apache.sshd.common.cipher
Fields in org.apache.sshd.common.cipher declared as Mac Modifier and Type Field Description protected MacChaCha20Cipher. mac -
Uses of Mac in org.apache.sshd.common.kex
Fields in org.apache.sshd.common.kex with type parameters of type Mac Modifier and Type Field Description private java.util.List<NamedFactory<Mac>>AbstractKexFactoryManager. macFactoriesMethods in org.apache.sshd.common.kex that return types with arguments of type Mac Modifier and Type Method Description java.util.List<NamedFactory<Mac>>AbstractKexFactoryManager. getMacFactories()java.util.List<NamedFactory<Mac>>KexFactoryManager. getMacFactories()Retrieve the list of named factories forMac.Method parameters in org.apache.sshd.common.kex with type arguments of type Mac Modifier and Type Method Description voidAbstractKexFactoryManager. setMacFactories(java.util.List<NamedFactory<Mac>> macFactories)voidKexFactoryManager. setMacFactories(java.util.List<NamedFactory<Mac>> macFactories) -
Uses of Mac in org.apache.sshd.common.mac
Classes in org.apache.sshd.common.mac that implement Mac Modifier and Type Class Description classBaseMacBase class forMacimplementations based on the JCE provider.classPoly1305MacPoly1305 one-time message authentication code.Methods in org.apache.sshd.common.mac that return Mac Modifier and Type Method Description MacBuiltinMacs. create()Method parameters in org.apache.sshd.common.mac with type arguments of type Mac Modifier and Type Method Description static BuiltinMacsBuiltinMacs. fromFactory(NamedFactory<Mac> factory) -
Uses of Mac in org.apache.sshd.common.session.helpers
Fields in org.apache.sshd.common.session.helpers declared as Mac Modifier and Type Field Description protected MacAbstractSession. inMacprivate MacAbstractSession.MessageCodingSettings. macprotected MacAbstractSession. outMacMethods in org.apache.sshd.common.session.helpers that return Mac Modifier and Type Method Description MacAbstractSession.MessageCodingSettings. getMac()Constructors in org.apache.sshd.common.session.helpers with parameters of type Mac Constructor Description MessageCodingSettings(Cipher cipher, Mac mac, Compression compression, Cipher.Mode mode, byte[] key, byte[] iv)
-