Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 142126 | Differences between
and this patch

Collapse All | Expand All

(-)ws-jaxme-0.3.1/buildjm.xml.orig.orig (+3 lines)
Lines 54-59 Link Here
54
      <pathelement location="${preqs}/ant.jar"/>
54
      <pathelement location="${preqs}/ant.jar"/>
55
      <pathelement location="${preqs}/xml-apis.jar"/>
55
      <pathelement location="${preqs}/xml-apis.jar"/>
56
      <pathelement location="${preqs}/xercesImpl.jar"/>
56
      <pathelement location="${preqs}/xercesImpl.jar"/>
57
      <pathelement location="${preqs}/javax-security.jar"/>
58
      <pathelement location="${preqs}/gnu-crypto.jar"/>
59
      <pathelement location="${preqs}/javax-crypto.jar"/>
57
    </path>
60
    </path>
58
61
59
    <path id="jaxme.runtime.path">
62
    <path id="jaxme.runtime.path">
(-)ws-jaxme-0.3.1/src/jaxme/org/apache/ws/jaxme/util/Base64Binary.java.orig (-4 / +3 lines)
Lines 18-25 Link Here
18
18
19
import java.io.IOException;
19
import java.io.IOException;
20
20
21
import sun.misc.BASE64Decoder;
21
import gnu.crypto.util.Base64;
22
import sun.misc.BASE64Encoder;
23
22
24
23
25
/**
24
/**
Lines 33-43 Link Here
33
  }
32
  }
34
33
35
  public static byte[] decode(String pValue) throws IOException {
34
  public static byte[] decode(String pValue) throws IOException {
36
    return (new BASE64Decoder()).decodeBuffer(pValue);
35
    return Base64.decode(pValue);
37
  }
36
  }
38
37
39
  public static String encode(byte[] pValue) {
38
  public static String encode(byte[] pValue) {
40
    return (new BASE64Encoder()).encode(pValue);
39
    return Base64.encode(pValue);
41
  }
40
  }
42
41
43
  public static void main(String[] args) throws Exception {
42
  public static void main(String[] args) throws Exception {

Return to bug 142126