Package aQute.base64

Examples of aQute.base64.Base64.toData()


  void assertDecode(String s) {
    Base64 b1 = new Base64(s);
    byte[] expected = Base64V.base64ToByteArray(s);
    System.out.println(expected + "-" + b1);
    assertEquals(expected, b1.toData());
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.