1 4 7 package javax.xml.crypto.dsig; 8 9 import java.security.spec.AlgorithmParameterSpec ; 10 import javax.xml.crypto.dsig.spec.C14NMethodParameterSpec; 11 12 39 public interface CanonicalizationMethod extends Transform { 40 41 45 final static String INCLUSIVE = 46 "http://www.w3.org/TR/2001/REC-xml-c14n-20010315"; 47 48 53 final static String INCLUSIVE_WITH_COMMENTS = 54 "http://www.w3.org/TR/2001/REC-xml-c14n-20010315#WithComments"; 55 56 61 final static String EXCLUSIVE = 62 "http://www.w3.org/2001/10/xml-exc-c14n#"; 63 64 69 final static String EXCLUSIVE_WITH_COMMENTS = 70 "http://www.w3.org/2001/10/xml-exc-c14n#WithComments"; 71 72 82 AlgorithmParameterSpec getParameterSpec(); 83 } 84 | Popular Tags |