Uses of Enum Class
net.messagevortex.asn1.encryption.Algorithm
Packages that use Algorithm
Package
Description
Contains classes required for decoding and encoding vortex messages and represent
VortexMessages states.
-
Uses of Algorithm in net.messagevortex.asn1
Methods in net.messagevortex.asn1 that return AlgorithmModifier and TypeMethodDescriptionAsymmetricAlgorithmSpec.getAlgorithm()Gets the algorithm (@see Algorithm).AsymmetricKey.getAlgorithm()Gets the algorithm of this key type.MacAlgorithm.getAlgorithm()SymmetricKey.getAlgorithm()MacAlgorithm.setAlgorithm(Algorithm alg) Sets the algorithm.Methods in net.messagevortex.asn1 with parameters of type AlgorithmModifier and TypeMethodDescriptionMacAlgorithm.setAlgorithm(Algorithm alg) Sets the algorithm.byte[]Signs a byte array.booleanVerifies a given signature accourding to the objects public key.Constructors in net.messagevortex.asn1 with parameters of type AlgorithmModifierConstructorDescriptionAsymmetricAlgorithmSpec(Algorithm alg, AlgorithmParameter params) InnerMessageBlock(Algorithm sym, AsymmetricKey asym) constructor to creates a mac algorith from an ASN.1 encoded object.SymmetricKey(Algorithm sk, Padding pad, Mode mode) Creates a new symmetric key according to spec. -
Uses of Algorithm in net.messagevortex.asn1.encryption
Methods in net.messagevortex.asn1.encryption that return AlgorithmModifier and TypeMethodDescriptionstatic Algorithm[]Algorithm.getAlgorithms(AlgorithmType at) Return a list of algorithms of the specified type.static AlgorithmAlgorithm.getById(int id) Look up an algorithm by id.static AlgorithmAlgorithm.getByString(String s) Look up an algorithm by its identification string.static AlgorithmAlgorithm.getDefault(AlgorithmType at) Look up the default algorithm to be used on the system.static AlgorithmReturns the enum constant of this class with the specified name.static Algorithm[]Algorithm.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in net.messagevortex.asn1.encryption with parameters of type Algorithm