org.apache.shindig.common.util.Base32 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shindig-common Show documentation
Show all versions of shindig-common Show documentation
Common java code for Shindig
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with this
* work for additional information regarding copyright ownership. The ASF
* licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package org.apache.shindig.common.util;
import org.apache.commons.codec.BinaryDecoder;
import org.apache.commons.codec.BinaryEncoder;
import org.apache.commons.codec.DecoderException;
import org.apache.commons.codec.EncoderException;
/**
* Implements Base32 encoding using 0-9a-v, with no padding for partial bytes.
*
* This is suitable for base32 encoding any binary data that needs to be passed
* in a web-safe context, but it differs from base32 implementations used in
* other contexts.
*/
public class Base32 implements BinaryDecoder, BinaryEncoder {
private static final StringEncoding ENCODER =
new StringEncoding("0123456789abcdefghijklmnopqrstuv".toCharArray());
public static byte[] encodeBase32(byte[] arg0) {
return ENCODER.encode(arg0).getBytes();
}
public static byte[] decodeBase32(byte[] arg0) {
return ENCODER.decode(new String(arg0));
}
public byte[] decode(byte[] arg0) throws DecoderException {
return decodeBase32(arg0);
}
public byte[] encode(byte[] arg0) throws EncoderException {
return encodeBase32(arg0);
}
public Object decode(Object object) throws DecoderException {
if (!(object instanceof byte[])) {
throw new DecoderException(
"Parameter supplied to Base32 decode is not a byte[]");
}
return decodeBase32((byte[]) object);
}
public Object encode(Object object) throws EncoderException {
if (!(object instanceof byte[])) {
throw new EncoderException(
"Parameter supplied to Base32 encode is not a byte[]");
}
return encodeBase32((byte[]) object);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy