1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the GNU General Public License v3+, or later.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package com
.jblend
.util
;
12 import cc
.squirreljme
.runtime
.cldc
.annotation
.Api
;
13 import cc
.squirreljme
.runtime
.cldc
.debug
.Debugging
;
14 import java
.io
.IOException
;
15 import java
.io
.InputStream
;
16 import java
.io
.OutputStream
;
18 public class BASE64Encoder
20 public BASE64Encoder()
22 throw Debugging
.todo();
26 public static synchronized String
encode(String var0
)
28 throw Debugging
.todo();
32 protected static int bytesPerAtom()
34 throw Debugging
.todo();
38 protected static int bytesPerLine()
40 throw Debugging
.todo();
44 protected static void encodeAtom(OutputStream var0
, byte[] var1
, int var2
,
48 throw Debugging
.todo();
52 protected static int readFully(InputStream var0
, byte[] var1
)
55 throw Debugging
.todo();