1 4 7 package javax.xml.crypto.dsig; 8 9 import javax.xml.crypto.XMLStructure; 10 import java.io.InputStream ; 11 import java.util.List ; 12 13 40 public interface SignedInfo extends XMLStructure { 41 42 47 CanonicalizationMethod getCanonicalizationMethod(); 48 49 54 SignatureMethod getSignatureMethod(); 55 56 62 List getReferences(); 63 64 70 String getId(); 71 72 80 InputStream getCanonicalizedData(); 81 } 82 | Popular Tags |