Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@apache.org Received: (qmail 89166 invoked from network); 25 Feb 2003 04:18:05 -0000 Received: from exchange.sun.com (192.18.33.10) by daedalus.apache.org with SMTP; 25 Feb 2003 04:18:05 -0000 Received: (qmail 16816 invoked by uid 97); 25 Feb 2003 04:19:49 -0000 Delivered-To: qmlist-jakarta-archive-commons-dev@nagoya.betaversion.org Received: (qmail 16809 invoked from network); 25 Feb 2003 04:19:48 -0000 Received: from daedalus.apache.org (HELO apache.org) (208.185.179.12) by nagoya.betaversion.org with SMTP; 25 Feb 2003 04:19:48 -0000 Received: (qmail 88970 invoked by uid 500); 25 Feb 2003 04:18:03 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 88957 invoked by uid 500); 25 Feb 2003 04:18:03 -0000 Received: (qmail 88954 invoked from network); 25 Feb 2003 04:18:03 -0000 Received: from icarus.apache.org (208.185.179.13) by daedalus.apache.org with SMTP; 25 Feb 2003 04:18:03 -0000 Received: (qmail 15246 invoked by uid 1628); 25 Feb 2003 04:18:02 -0000 Date: 25 Feb 2003 04:18:02 -0000 Message-ID: <20030225041802.15245.qmail@icarus.apache.org> From: tobrien@apache.org To: jakarta-commons-sandbox-cvs@apache.org Subject: cvs commit: jakarta-commons-sandbox/codec/src/test/org/apache/commons/codec/binary TestBase64.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N tobrien 2003/02/24 20:18:02 Modified: codec/src/java/org/apache/commons/codec StringEncoderComparator.java codec/src/java/org/apache/commons/codec/binary Base64.java codec/src/test/org/apache/commons/codec/binary TestBase64.java Log: Removed isBase64(String) from Base64 Revision Changes Path 1.3 +1 -2 jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/StringEncoderComparator.java Index: StringEncoderComparator.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/StringEncoderComparator.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- StringEncoderComparator.java 24 Feb 2003 11:53:29 -0000 1.2 +++ StringEncoderComparator.java 25 Feb 2003 04:18:01 -0000 1.3 @@ -91,7 +91,6 @@ * strings using the StringEncoder this Comparator * was created with. */ - public int compare(Object o1, Object o2) { int compareCode = 0; 1.5 +379 -379 jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/binary/Base64.java Index: Base64.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/binary/Base64.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- Base64.java 24 Feb 2003 11:53:29 -0000 1.4 +++ Base64.java 25 Feb 2003 04:18:01 -0000 1.5 @@ -72,419 +72,419 @@ import org.apache.commons.codec.EncoderException; /** - * This class provides encode/decode for RFC 2045 Base64 as defined by - * RFC 2045, N. Freed and N. Borenstein. RFC 2045: * Multipurpose Internet Mail Extensions (MIME) Part One: Format of * Internet Message Bodies. Reference 1996 * * @author Jeffrey Rodriguez - * @author Daniel Rall + * @author Daniel Rall * @author Martin Redington - * @since 1.2 + * @since 1.0-dev */ -public class Base64 implements BinaryEncoder, BinaryDecoder -{ - static final int CHUNK_SIZE = 76; - static final byte[] CHUNK_SEPARATOR = "\n".getBytes(); - - static private final int BASELENGTH = 255; - static private final int LOOKUPLENGTH = 64; - static private final int TWENTYFOURBITGROUP = 24; - static private final int EIGHTBIT = 8; - static private final int SIXTEENBIT = 16; - static private final int SIXBIT = 6; - static private final int FOURBYTE = 4; - static private final int SIGN = -128; - static private final byte PAD = (byte) '='; - static private byte [] base64Alphabet = new byte[BASELENGTH]; - static private byte [] lookUpBase64Alphabet = new byte[LOOKUPLENGTH]; - //static private final Log log = LogSource.getInstance("org.apache.commons.util.Base64"); - - static - { - for (int i = 0; i < BASELENGTH; i++ ) - { - base64Alphabet[i] = -1; - } - for (int i = 'Z'; i >= 'A'; i--) - { - base64Alphabet[i] = (byte) (i - 'A'); - } - for (int i = 'z'; i>= 'a'; i--) - { - base64Alphabet[i] = (byte) (i - 'a' + 26); - } - for (int i = '9'; i >= '0'; i--) - { - base64Alphabet[i] = (byte) (i - '0' + 52); - } - - base64Alphabet['+'] = 62; - base64Alphabet['/'] = 63; - - for (int i = 0; i <= 25; i++ ) - lookUpBase64Alphabet[i] = (byte) ('A' + i); - - for (int i = 26, j = 0; i <= 51; i++, j++ ) - lookUpBase64Alphabet[i] = (byte) ('a'+ j); - - for (int i = 52, j = 0; i <= 61; i++, j++ ) - lookUpBase64Alphabet[i] = (byte) ('0' + j); - - lookUpBase64Alphabet[62] = (byte) '+'; - lookUpBase64Alphabet[63] = (byte) '/'; - } - - public static boolean isBase64( String isValidString ) - { - return isArrayByteBase64(isValidString.getBytes()); - } - - public static boolean isBase64( byte octect ) - { - //shall we ignore white space? JEFF?? - return (octect == PAD || base64Alphabet[octect] != -1); - } - - public static boolean isArrayByteBase64( byte[] arrayOctect ) - { - arrayOctect = discardWhitespace( arrayOctect ); - - int length = arrayOctect.length; - if (length == 0) - { - // shouldn't a 0 length array be valid base64 data? - // return false; - return true; - } - for (int i=0; i < length; i++) - { - if ( !Base64.isBase64(arrayOctect[i]) ) - return false; - } - return true; - } +public class Base64 implements BinaryEncoder, BinaryDecoder { - public Object encode(Object pObject) throws EncoderException { + // Create constants pertaining to the chunk requirement + static final int CHUNK_SIZE = 76; + static final byte[] CHUNK_SEPARATOR = "\n".getBytes(); + + // Create numerical and byte constants + static private final int BASELENGTH = 255; + static private final int LOOKUPLENGTH = 64; + static private final int TWENTYFOURBITGROUP = 24; + static private final int EIGHTBIT = 8; + static private final int SIXTEENBIT = 16; + static private final int SIXBIT = 6; + static private final int FOURBYTE = 4; + static private final int SIGN = -128; + static private final byte PAD = (byte) '='; + + // Create arrays to hold the base64 characters and a + // lookup for base64 chars + static private byte[] base64Alphabet = new byte[BASELENGTH]; + static private byte[] lookUpBase64Alphabet = new byte[LOOKUPLENGTH]; + + // Populating the lookup and character arrays + static { + for (int i = 0; i < BASELENGTH; i++) { + base64Alphabet[i] = -1; + } + for (int i = 'Z'; i >= 'A'; i--) { + base64Alphabet[i] = (byte) (i - 'A'); + } + for (int i = 'z'; i >= 'a'; i--) { + base64Alphabet[i] = (byte) (i - 'a' + 26); + } + for (int i = '9'; i >= '0'; i--) { + base64Alphabet[i] = (byte) (i - '0' + 52); + } + + base64Alphabet['+'] = 62; + base64Alphabet['/'] = 63; + + for (int i = 0; i <= 25; i++) + lookUpBase64Alphabet[i] = (byte) ('A' + i); - Object result; + for (int i = 26, j = 0; i <= 51; i++, j++) + lookUpBase64Alphabet[i] = (byte) ('a' + j); - if( !(pObject instanceof byte[]) ) { - throw new EncoderException( "Parameter supplied to " + - "Base64 " + - "encode is not a byte[]" ); - } else { - result = encode( (byte[]) pObject ); - } + for (int i = 52, j = 0; i <= 61; i++, j++) + lookUpBase64Alphabet[i] = (byte) ('0' + j); - return result; + lookUpBase64Alphabet[62] = (byte) '+'; + lookUpBase64Alphabet[63] = (byte) '/'; + } + private static boolean isBase64(byte octect) { + //shall we ignore white space? JEFF?? + return (octect == PAD || base64Alphabet[octect] != -1); } - public byte[] encode(byte[] pArray) throws EncoderException { - return( base64( pArray, false ) ); + public static boolean isArrayByteBase64(byte[] arrayOctect) { + arrayOctect = discardWhitespace(arrayOctect); + + int length = arrayOctect.length; + if (length == 0) { + // shouldn't a 0 length array be valid base64 data? + // return false; + return true; + } + for (int i = 0; i < length; i++) { + if (!Base64.isBase64(arrayOctect[i])) + return false; + } + return true; } - public static byte[] base64( byte[] binaryData ) { - return( base64( binaryData, false ) ); + + public static byte[] base64(byte[] binaryData) { + return (base64(binaryData, false)); } - public static byte[] base64Chunked( byte[] binaryData ) { - return( base64( binaryData, true ) ); + public static byte[] base64Chunked(byte[] binaryData) { + return (base64(binaryData, true)); } public Object decode(Object pObject) throws DecoderException { - Object result; + Object result; - if( !(pObject instanceof byte[]) ) { - throw new DecoderException( "Parameter supplied to " + - "Base64 " + - "decode is not a byte[]" ); - } else { - result = decode( (byte[]) pObject ); - } + if (!(pObject instanceof byte[])) { + throw new DecoderException( + "Parameter supplied to " + + "Base64 " + + "decode is not a byte[]"); + } else { + result = decode((byte[]) pObject); + } - return result; + return result; } public byte[] decode(byte[] pArray) throws DecoderException { - - byte[] result; - if( !isArrayByteBase64(pArray) ) { - throw new DecoderException( "Parameter supplied to " + - "Base64 " + - "decode is not a valid base64 data." ); - } else { - result = base64decode( (byte[]) pArray ); - } - - return( result ); - } - - /** - * Encodes hex octects into Base64. - * - * @param binaryData Array containing binary data to encode. - * @return Base64-encoded data. - */ - public static byte[] base64( byte[] binaryData, boolean isChunked ) - { - int lengthDataBits = binaryData.length*EIGHTBIT; - int fewerThan24bits = lengthDataBits%TWENTYFOURBITGROUP; - int numberTriplets = lengthDataBits/TWENTYFOURBITGROUP; - byte encodedData[] = null; - int encodedDataLength = 0; - int nbrChunks = 0; - - if (fewerThan24bits != 0) - { - //data not divisible by 24 bit - encodedDataLength = (numberTriplets + 1 ) * 4; - } - else - { - // 16 or 8 bit - encodedDataLength = numberTriplets * 4; - } - - // If the output is to be "chunked" into 76 character sections, - // for compliance with RFC 2045 MIME, then it is important to - // allow for extra length to account for the separator(s) - if( isChunked ) { - - nbrChunks = (CHUNK_SEPARATOR.length == 0 ? 0 : - (int) Math.ceil((float) encodedDataLength / - CHUNK_SIZE)); - encodedDataLength += nbrChunks * CHUNK_SEPARATOR.length; - } - - encodedData = new byte[encodedDataLength]; - - byte k = 0, l = 0, b1 = 0, b2 = 0, b3 = 0; - - int encodedIndex = 0; - int dataIndex = 0; - int i = 0; - int nextSeparatorIndex = CHUNK_SIZE; - int chunksSoFar = 0; - - //log.debug("number of triplets = " + numberTriplets); - for ( i = 0; i