Uses of Class
goldengate.common.digest.FilesystemBasedDigest.DigestAlgo

Packages that use FilesystemBasedDigest.DigestAlgo
goldengate.common.digest Classes implementing digests support (MD2, MD5, SHA1, SHA-256/384/512, CRC32, ADLER32)

MD5 can be implemented through Fast MD5 implementation, with or without C library support, but can be reverted to JVM native digest also. 
 

Uses of FilesystemBasedDigest.DigestAlgo in goldengate.common.digest
 

Fields in goldengate.common.digest declared as FilesystemBasedDigest.DigestAlgo
protected  FilesystemBasedDigest.DigestAlgo FilesystemBasedDigest.algo
           
 

Methods in goldengate.common.digest that return FilesystemBasedDigest.DigestAlgo
static FilesystemBasedDigest.DigestAlgo FilesystemBasedDigest.DigestAlgo.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static FilesystemBasedDigest.DigestAlgo[] FilesystemBasedDigest.DigestAlgo.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in goldengate.common.digest with parameters of type FilesystemBasedDigest.DigestAlgo
static byte[] FilesystemBasedDigest.getHash(org.jboss.netty.buffer.ChannelBuffer buffer, FilesystemBasedDigest.DigestAlgo algo)
          Get hash with given ChannelBuffer (from Netty)
static byte[] FilesystemBasedDigest.getHash(File f, boolean nio, FilesystemBasedDigest.DigestAlgo algo)
          Get the Digest for the file using the specified algorithm using access through NIO or not
static byte[] FilesystemBasedDigest.getHash(InputStream stream, FilesystemBasedDigest.DigestAlgo algo)
          Get the Digest for the file using the specified algorithm using access through NIO or not
 void FilesystemBasedDigest.initialize(FilesystemBasedDigest.DigestAlgo algo)
          (Re)Initialize the digest
 

Constructors in goldengate.common.digest with parameters of type FilesystemBasedDigest.DigestAlgo
FilesystemBasedDigest(FilesystemBasedDigest.DigestAlgo algo)
          Constructor of an independent Digest
 



Copyright © 2009-2012 Frederic Bregier. All Rights Reserved.