/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 4 -*- */
/* vi: set expandtab shiftwidth=4 tabstop=4: */
/**
* \file
* <PRE>
* MODP_B16 - High performance base16 encoder/decoder
* http://code.google.com/p/stringencoders/
*
* Copyright © 2005, 2006, 2007 Nick Galbreath -- nickg [at] modp [dot] com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* Neither the name of the modp.com nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This is the standard "new" BSD license:
* http://www.opensource.org/licenses/bsd-license.php
* </PRE>
*/
#include "config.h"
#include "modp_b16.h"
#include "modp_stdint.h"
#include "modp_b16_data.h"
size_t modp_b16_encode(char* dest, const char* str, size_t len)
{
size_t i;
const size_t buckets = len >> 2; // i.e. i / 4
const size_t leftover = len & 0x03; // i.e. i % 4
uint8_t* p = (uint8_t*) dest;
uint8_t t1, t2, t3, t4;
const uint32_t* srcInt = (const uint32_t*) str;
uint32_t x;
for (i = 0; i < buckets; ++i) {
x = *srcInt++;
// t1 = *s++; t2 = *s++; t3 = *s++; t4 = *s++;
#ifdef WORDS_BIGENDIAN
t1 = (uint8_t) (x >> 24);
t2 = (uint8_t) (x >> 16);
t3 = (uint8_t) (x >> 8);
t4 = (uint8_t) x;
#else
t4 = (uint8_t) (x >> 24);
t3 = (uint8_t) (x >> 16);
t2 = (uint8_t) (x >> 8);
t1 = (uint8_t) x;
#endif
*p++ = gsHexEncodeC1[t1];
*p++ = gsHexEncodeC2[t1];
*p++ = gsHexEncodeC1[t2];
*p++ = gsHexEncodeC2[t2];
*p++ = gsHexEncodeC1[t3];
*p++ = gsHexEncodeC2[t3];
*p++ = gsHexEncodeC1[t4];
*p++ = gsHexEncodeC2[t4];
}
const uint8_t* srcChar = (const uint8_t*) srcInt;
switch (leftover) {
case 0:
break;
case 1:
t1 = (uint8_t) *srcChar;
*p++ = gsHexEncodeC1[t1];
*p++ = gsHexEncodeC2[t1];
break;
case 2:
t1 = (uint8_t) *srcChar++;
t2 = (uint8_t) *srcChar;
*p++ = gsHexEncodeC1[t1];
*p++ = gsHexEncodeC2[t1];
*p++ = gsHexEncodeC1[t2];
*p++ = gsHexEncodeC2[t2];
break;
default: /* case 3 */
t1 = (uint8_t) *srcChar++;
t2 = (uint8_t) *srcChar++;
t3 = (uint8_t) *srcChar;
*p++ = gsHexEncodeC1[t1];
*p++ = gsHexEncodeC2[t1];
*p++ = gsHexEncodeC1[t2];
*p++ = gsHexEncodeC2[t2];
*p++ = gsHexEncodeC1[t3];
*p++ = gsHexEncodeC2[t3];
}
*p = '\0';
return (size_t)(p - (uint8_t*) dest);
}
size_t modp_b16_decode(char* dest, const char* str, size_t len)
{
size_t i;
uint32_t val1, val2;
uint8_t* p = (uint8_t*) dest;
const uint8_t* s = (const uint8_t*) str;
const size_t buckets = len >> 2; // i.e. len / 4
const size_t leftover = len & 0x03; // i.e. len % 4
if (leftover & 0x01) { // i.e if leftover is odd,
// leftover==1 || leftover == 3
return (size_t)-1;
}
// read 4 bytes, output 2.
// Note on PPC G4, GCC 4.0, it's quite a bit faster to
// NOT use t0,t1,t2,t3, and just put the *s++ in the gsHexDecodeMap
// lookup
uint8_t t0,t1,t2,t3;
for (i = 0; i < buckets; ++i) {
t0 = *s++; t1= *s++; t2 = *s++; t3 = *s++;
val1 = gsHexDecodeD2[t0] | gsHexDecodeMap[t1];
val2 = gsHexDecodeD2[t2] | gsHexDecodeMap[t3];
if (val1 > 0xff || val2 > 0xff) {
return (size_t)-1;
}
*p++ = (uint8_t) val1;
*p++ = (uint8_t) val2;
}
if (leftover == 2) {
val1 = gsHexDecodeD2[s[0]] | gsHexDecodeMap[s[1]];
if (val1 > 0xff) {
return (size_t)-1;
}
*p++ = (uint8_t) val1;
}
return (size_t)(p - (uint8_t*)dest);
}