Uses of Class
badpenguin.dkim.CanonicalMethod

Packages that use CanonicalMethod
badpenguin.dkim   
badpenguin.dkim.test   
 

Uses of CanonicalMethod in badpenguin.dkim
 

Methods in badpenguin.dkim that return CanonicalMethod
 CanonicalMethod DkimSignature.getBodyMethod()
          Get the canonicalisation that should be used for processing the body.
 CanonicalMethod DkimSignature.getHeaderMethod()
          Get the canonicalisation that should be used for processing the headers.
static CanonicalMethod CanonicalMethod.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CanonicalMethod[] CanonicalMethod.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in badpenguin.dkim with parameters of type CanonicalMethod
 java.lang.String Canonicaliser.processBody(java.io.ByteArrayOutputStream bodyStream, long length, CanonicalMethod method)
          Read the body from the given byte stream and process it with the specified canonicalisation method.
 void DkimSignature.setBodyMethod(CanonicalMethod method)
          Set the canonicalisation method which should be used for processing the body.
Throw a DkimError if we are a DomainKey signature, because you can't specify defferent encodings for header and body when using DomainKey
 void DkimSignature.setHeaderMethod(CanonicalMethod method)
          Set the canonicalisation method which should be used for processing the headers.
Throw a DkimError if we are a DomainKey signature, because you can't specify defferent encodings for header and body when using DomainKey
 void DkimSignature.setMethod(CanonicalMethod method)
          Set both the body and header canonicalisation method to the specified value
 

Uses of CanonicalMethod in badpenguin.dkim.test
 

Methods in badpenguin.dkim.test with parameters of type CanonicalMethod
 void SignMail.run(CanonicalMethod header, CanonicalMethod body, java.lang.String filename)
           
 



© Copyright 2009 Mark Boddington (www.badpenguin.co.uk)