Quadcap Embeddable Database

com.quadcap.crypto.Digest Interface Reference

Inheritance diagram for com.quadcap.crypto.Digest:

com.quadcap.crypto.SHA1Digest List of all members.

Detailed Description

Symmetric key interface: The same key can be used for encryption and decryption.

Author:
Stan Bailes

Definition at line 47 of file Digest.java.

Public Member Functions

void init ()
void update (byte b)
void update (byte[] b)
void update (byte[] b, int offset, int length)
byte[] digest ()


Member Function Documentation

byte [] com.quadcap.crypto.Digest.digest  ) 
 

Implemented in com.quadcap.crypto.SHA1Digest.

Referenced by com.quadcap.sql.file.EncryptedBlockStore.makeDigest().

void com.quadcap.crypto.Digest.init  ) 
 

Implemented in com.quadcap.crypto.SHA1Digest.

void com.quadcap.crypto.Digest.update byte[]  b,
int  offset,
int  length
 

Implemented in com.quadcap.crypto.SHA1Digest.

void com.quadcap.crypto.Digest.update byte[]  b  ) 
 

Implemented in com.quadcap.crypto.SHA1Digest.

void com.quadcap.crypto.Digest.update byte  b  ) 
 

Implemented in com.quadcap.crypto.SHA1Digest.

Referenced by com.quadcap.sql.file.EncryptedBlockStore.makeDigest().