Uses of Class
org.xlattice.CryptoException

Packages that use CryptoException
org.xlattice This package contains abstractions for all of the basic types dealt with in XLattice. 
 

Uses of CryptoException in org.xlattice
 

Methods in org.xlattice that throw CryptoException
 DigSigner Node.getSigner()
           
 DigSigner Key.getSigner(java.lang.String digestName)
          Given a message digest algorithm, return a reference to a digital signature generator suitable for this key.
abstract  void SigVerifier.init(PublicKey pubkey)
          Initialize the verifier for use with a particular PublicKey.
 byte[] DigSigner.sign()
          Generate a digital signature and implicitly reset().
abstract  SigVerifier SigVerifier.update(byte[] data)
          Add block of data to that being checked.
 DigSigner DigSigner.update(byte[] data)
          Add the binary data referenced to any already processed by the message digest part of the algorithm.
abstract  SigVerifier SigVerifier.update(byte[] data, int offset, int len)
           
 DigSigner DigSigner.update(byte[] data, int offset, int len)
           
abstract  boolean SigVerifier.verify(byte[] digSig)
          Check the digital signature passed against the data accumulated.
abstract  boolean SigVerifier.verify(byte[] digSig, int offset, int len)