Methods in mail.node.crypt that throw EncryptionException |
boolean |
MyCryptEngine.checkSignature(org.w3c.dom.Element data)
|
boolean |
OtherCryptEngine.checkSignature(org.w3c.dom.Element data)
|
abstract boolean |
CryptEngine.checkSignature(org.w3c.dom.Element signature)
decodes the signature with the public key and then checks it |
void |
MyCryptEngine.decrypt(org.w3c.dom.Element data)
|
void |
OtherCryptEngine.decrypt(org.w3c.dom.Element data)
|
abstract void |
CryptEngine.decrypt(org.w3c.dom.Element data)
decrypt data with the private key
The document that contains the Element will be modified! |
void |
MyCryptEngine.encrypt(org.w3c.dom.Element data)
|
void |
OtherCryptEngine.encrypt(org.w3c.dom.Element data)
|
abstract void |
CryptEngine.encrypt(org.w3c.dom.Element data)
encrypt data with the public key
The document that contains the Element will be modified! |
void |
MyCryptEngine.sign(org.w3c.dom.Element data)
|
void |
OtherCryptEngine.sign(org.w3c.dom.Element data)
|
abstract void |
CryptEngine.sign(org.w3c.dom.Element data)
sign data with the private key
The document that contains the Element will be modified! |