Uses of Class
edu.vt.middleware.crypt.digest.DigestAlgorithm

Packages that use DigestAlgorithm
edu.vt.middleware.crypt.digest   
edu.vt.middleware.crypt.pbe   
edu.vt.middleware.crypt.pkcs   
edu.vt.middleware.crypt.signature   
 

Uses of DigestAlgorithm in edu.vt.middleware.crypt.digest
 

Subclasses of DigestAlgorithm in edu.vt.middleware.crypt.digest
 class MD2
          MD2 contains functions for hashing data using the MD2 algorithm.
 class MD4
          MD4 contains functions for hashing data using the MD4 algorithm.
 class MD5
          MD5 contains functions for hashing data using the MD5 algorithm.
 class RipeMD128
          RipeMD128 contains functions for hashing data using the RipeMD128 algorithm.
 class RipeMD160
          RipeMD160 contains functions for hashing data using the RipeMD160 algorithm.
 class RipeMD256
          RipeMD256 contains functions for hashing data using the RipeMD256 algorithm.
 class RipeMD320
          RipeMD320 contains functions for hashing data using the RipeMD320 algorithm.
 class SHA1
          SHA1 contains functions for hashing data using the SHA-1 algorithm.
 class SHA256
          SHA256 contains functions for hashing data using the SHA-256 algorithm.
 class SHA384
          SHA384 contains functions for hashing data using the SHA-384 algorithm.
 class SHA512
          SHA512 contains functions for hashing data using the SHA-512 algorithm.
 class Tiger
          Tiger contains functions for hashing data using the Tiger algorithm.
 class Whirlpool
          Implementation of Whirlpool message digest algorithm.
 

Methods in edu.vt.middleware.crypt.digest that return DigestAlgorithm
static DigestAlgorithm DigestAlgorithm.newInstance(String algorithm)
          Creates a new digest algorithm instance from its name, e.g.
 

Uses of DigestAlgorithm in edu.vt.middleware.crypt.pbe
 

Constructors in edu.vt.middleware.crypt.pbe with parameters of type DigestAlgorithm
PBES1EncryptionScheme(SymmetricAlgorithm alg, DigestAlgorithm digest, PBEParameter params)
          Creates a new instance with the given parameters.
PBKDF1KeyGenerator(DigestAlgorithm prf, byte[] saltBytes)
          Creates a new instance that uses the given digest for the pseudorandom function.
PBKDF1KeyGenerator(DigestAlgorithm prf, byte[] saltBytes, int iterations)
          Creates a new instance that uses the given digest for the pseudorandom function.
PKCS12EncryptionScheme(SymmetricAlgorithm alg, DigestAlgorithm digest, PBEParameter params, int keyBitLength)
          Creates a new instance with the given parameters.
PKCS12KeyGenerator(DigestAlgorithm prf, byte[] saltBytes, int iterations)
          Creates a new instance that uses the given digest for the pseudorandom function.
 

Uses of DigestAlgorithm in edu.vt.middleware.crypt.pkcs
 

Methods in edu.vt.middleware.crypt.pkcs that return DigestAlgorithm
 DigestAlgorithm PBES1Algorithm.getDigest()
           
 

Uses of DigestAlgorithm in edu.vt.middleware.crypt.signature
 

Fields in edu.vt.middleware.crypt.signature declared as DigestAlgorithm
protected  DigestAlgorithm SignatureAlgorithm.digest
          Message digest used to compute encoded message for signing.
 

Constructors in edu.vt.middleware.crypt.signature with parameters of type DigestAlgorithm
DSASignature(DigestAlgorithm d)
          Creates a new DSA signature class that uses the given digest algorithm for message digest computation.
RSASignature(DigestAlgorithm d)
          Creates a new RSA signature class that uses the given digest algorithm for message digest computation.
 



Copyright © 2003-2011 Virginia Tech. All Rights Reserved.