1 17 package com.sun.org.apache.xml.internal.security.encryption; 18 19 20 import java.util.Iterator ; 21 import org.w3c.dom.Element ; 22 23 24 43 public interface EncryptionMethod { 44 49 String getAlgorithm(); 50 51 57 int getKeySize(); 58 59 64 void setKeySize(int size); 65 66 72 byte[] getOAEPparams(); 73 74 79 void setOAEPparams(byte[] parameters); 80 81 88 Iterator getEncryptionMethodInformation(); 89 90 95 void addEncryptionMethodInformation(Element information); 96 97 103 void removeEncryptionMethodInformation(Element information); 104 } 105 106 | Popular Tags |