Uses of Class
org.jivesoftware.smackx.hashes.HashManager.ALGORITHM
-
Packages that use HashManager.ALGORITHM Package Description org.jivesoftware.smackx.hashes XEP-0300 - Use of cryptographic hash functions.org.jivesoftware.smackx.hashes.element XEP-0300 - Use of cryptographic hash functions. -
-
Uses of HashManager.ALGORITHM in org.jivesoftware.smackx.hashes
Fields in org.jivesoftware.smackx.hashes with type parameters of type HashManager.ALGORITHM Modifier and Type Field Description static java.util.List<HashManager.ALGORITHM>
HashManager. RECOMMENDED
Methods in org.jivesoftware.smackx.hashes that return HashManager.ALGORITHM Modifier and Type Method Description static HashManager.ALGORITHM
HashManager.ALGORITHM. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static HashManager.ALGORITHM
HashManager.ALGORITHM. valueOfName(java.lang.String s)
Compensational method for static 'valueOf' function.static HashManager.ALGORITHM[]
HashManager.ALGORITHM. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.jivesoftware.smackx.hashes with parameters of type HashManager.ALGORITHM Modifier and Type Method Description static java.lang.String
HashManager. asFeature(HashManager.ALGORITHM algorithm)
Return the feature name of the given algorithm.static HashElement
HashManager. assembleHashElement(HashManager.ALGORITHM algorithm, byte[] hash)
static HashElement
HashManager. calculateHashElement(HashManager.ALGORITHM algorithm, byte[] data)
static java.security.MessageDigest
HashManager. getMessageDigest(HashManager.ALGORITHM algorithm)
static byte[]
HashManager. hash(HashManager.ALGORITHM algorithm, byte[] data)
Calculate the hash sum of data using algorithm.static byte[]
HashManager. hash(HashManager.ALGORITHM algorithm, java.lang.String data)
Method parameters in org.jivesoftware.smackx.hashes with type arguments of type HashManager.ALGORITHM Modifier and Type Method Description void
HashManager. addAlgorithmsToFeatures(java.util.List<HashManager.ALGORITHM> algorithms)
Announce support for the given list of algorithms. -
Uses of HashManager.ALGORITHM in org.jivesoftware.smackx.hashes.element
Methods in org.jivesoftware.smackx.hashes.element that return HashManager.ALGORITHM Modifier and Type Method Description HashManager.ALGORITHM
HashElement. getAlgorithm()
Return the hash algorithm used in this HashElement.Constructors in org.jivesoftware.smackx.hashes.element with parameters of type HashManager.ALGORITHM Constructor Description HashElement(HashManager.ALGORITHM algorithm, byte[] hash)
Create a HashElement from pre-calculated values.HashElement(HashManager.ALGORITHM algorithm, java.lang.String hashB64)
Create a HashElement from pre-calculated values.
-