Uses of Class
mail.node.crypt.CryptEngine

Packages that use CryptEngine
mail.node   
mail.node.crypt   
mail.types   
 

Uses of CryptEngine in mail.node
 

Fields in mail.node declared as CryptEngine
protected  CryptEngine Node.crypt
           
 

Methods in mail.node that return CryptEngine
 CryptEngine Node.getCryptEngine()
           
 

Uses of CryptEngine in mail.node.crypt
 

Subclasses of CryptEngine in mail.node.crypt
 class MyCryptEngine
          To get this running, download the
Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files 5.0
from http://java.sun.com/javase/downloads/index_jdk5.jsp
You will also need org.apache-xml.security-1.4.1, but you will not need bouncy castle, because the java6 comes with jce already.
 class OtherCryptEngine
           
 

Uses of CryptEngine in mail.types
 

Fields in mail.types declared as CryptEngine
private  CryptEngine SignedMail.sender
           
 

Methods in mail.types with parameters of type CryptEngine
 Mail EncryptedMail.decrypt(CryptEngine decryptEngine)
           
 boolean SignedMail.verifySignature(CryptEngine checkEngine)
           
 

Constructors in mail.types with parameters of type CryptEngine
SignedMail(ID receiver, Mail m, CryptEngine sender)