You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@santuario.apache.org by am...@apache.org on 2003/12/19 12:52:39 UTC

cvs commit: xml-security/src/org/apache/xml/security/encryption CipherValue.java

amattheu    2003/12/19 03:52:39

  Modified:    src/org/apache/xml/security/encryption CipherValue.java
  Log:
  Changed interface. Credit to Werner Dittmann of Siemens.
  
  Revision  Changes    Path
  1.7       +4 -2      xml-security/src/org/apache/xml/security/encryption/CipherValue.java
  
  Index: CipherValue.java
  ===================================================================
  RCS file: /home/cvs/xml-security/src/org/apache/xml/security/encryption/CipherValue.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- CipherValue.java	18 Mar 2003 22:47:44 -0000	1.6
  +++ CipherValue.java	19 Dec 2003 11:52:38 -0000	1.7
  @@ -71,7 +71,8 @@
        *
        * @return cipher value.
        */
  -    byte[] getValue();
  +	String getValue();
  +	// byte[] getValue();
       
       /**
        * Sets the Base 64 encoded, encrypted octets that is the
  @@ -79,5 +80,6 @@
        *
        * @param value the cipher value.
        */
  -    void setValue(byte[] value);
  +	void setValue(String value);
  +	// void setValue(byte[] value);
   }