1 17 package com.sun.org.apache.xml.internal.security.encryption; 18 19 20 40 public interface CipherData { 41 42 public static final int VALUE_TYPE = 0x00000001; 43 44 public static final int REFERENCE_TYPE = 0x00000002; 45 46 54 int getDataType(); 55 56 61 CipherValue getCipherValue(); 62 63 69 void setCipherValue(CipherValue value) throws XMLEncryptionException; 70 71 78 CipherReference getCipherReference(); 79 80 87 void setCipherReference(CipherReference reference) throws 88 XMLEncryptionException; 89 } 90 91 | Popular Tags |