Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

cryptix.openpgp.util
Interface PGPUpdateable  view PGPUpdateable download PGPUpdateable.java


public interface PGPUpdateable

Interface for classes that have an 'update' method

This class was created, because cryptix.openpgp.io.PGPHashDataOutputStream needs access to the update(..) method of a cryptix.openpgp.algorithm.PGPSigner class. Because cryptix.openpgp.io is compiled before cryptix.openpgp.algorithm, the PGPSigner class can't be used directly, therefore this interface was created in the .util package, which is always compiled before .io and .algorithm.

Changing compiling order would not have worked, because the classes in .algorithm use classes in .io

Version:
$Revision: 1.2 $

Method Summary
 void update(byte[] data)
           
 

Method Detail

update

public void update(byte[] data)