免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
楼主: lovesaka
打印 上一主题 下一主题

[函数] C BASE64编解码函数 [复制链接]

论坛徽章:
0
11 [报告]
发表于 2007-02-05 10:20 |只看该作者
--

通常是把预先计算好的 tab 放到全局数组里,这个叫 pre-computation

--

论坛徽章:
0
12 [报告]
发表于 2007-02-05 10:27 |只看该作者
int main()
{
        char *p,*q;
        p="xygyqwg";
        char en[20],de[20];
        printf(encode(p,&en));
        printf("\n");
        q=en;
        printf(decode(q,&de));
        printf("\n");
        printf("end");
}
我这样可以吗??编码好像可以,就是不能解码?不知道为什么

论坛徽章:
0
13 [报告]
发表于 2007-02-05 10:36 |只看该作者
/* LibTomCrypt, modular cryptographic library -- Tom St Denis
*
* LibTomCrypt is a library that provides various cryptographic
* algorithms in a highly modular and flexible manner.
*
* The library is free for all purposes without any express
* guarantee it works.
*
* Tom St Denis, tomstdenis@gmail.com, http://libtomcrypt.com
*/

#include <stdio.h>
#include <stdlib.h>
#include <stddef.h>
#include <assert.h>

int base64_encode(const unsigned char *,  unsigned long,
                        unsigned char *, unsigned long *);

int base64_decode(const unsigned char *,  unsigned long,
                        unsigned char *, unsigned long *);

static const char *codes =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

/* error codes [will be expanded in future releases] */
enum {
   CRYPT_OK=0,             /* Result OK */
   CRYPT_ERROR,            /* Generic Error */
   CRYPT_NOP,              /* Not a failure but no operation was performed */

   CRYPT_INVALID_KEYSIZE,  /* Invalid key size given */
   CRYPT_INVALID_ROUNDS,   /* Invalid number of rounds */
   CRYPT_FAIL_TESTVECTOR,  /* Algorithm failed test vectors */

   CRYPT_BUFFER_OVERFLOW,  /* Not enough space for output */
   CRYPT_INVALID_PACKET,   /* Invalid input packet given */

   CRYPT_INVALID_PRNGSIZE, /* Invalid number of bits for a PRNG */
   CRYPT_ERROR_READPRNG,   /* Could not read enough from PRNG */

   CRYPT_INVALID_CIPHER,   /* Invalid cipher specified */
   CRYPT_INVALID_HASH,     /* Invalid hash specified */
   CRYPT_INVALID_PRNG,     /* Invalid PRNG specified */

   CRYPT_MEM,              /* Out of memory */

   CRYPT_PK_TYPE_MISMATCH, /* Not equivalent types of PK keys */
   CRYPT_PK_NOT_PRIVATE,   /* Requires a private PK key */

   CRYPT_INVALID_ARG,      /* Generic invalid argument */
   CRYPT_FILE_NOTFOUND,    /* File Not Found */

   CRYPT_PK_INVALID_TYPE,  /* Invalid type of PK key */
   CRYPT_PK_INVALID_SYSTEM,/* Invalid PK system specified */
   CRYPT_PK_DUP,           /* Duplicate key already in key ring */
   CRYPT_PK_NOT_FOUND,     /* Key not found in keyring */
   CRYPT_PK_INVALID_SIZE,  /* Invalid size input for PK parameters */

   CRYPT_INVALID_PRIME_SIZE,/* Invalid size of prime requested */
   CRYPT_PK_INVALID_PADDING /* Invalid padding on input */
};

#define LTC_ARGCHK(x) assert(x)

/**
   base64 Encode a buffer (NUL terminated)
   @param in      The input buffer to encode
   @param inlen   The length of the input buffer
   @param out     [out] The destination of the base64 encoded data
   @param outlen  [in/out] The max size and resulting size
   @return CRYPT_OK if successful
*/
int base64_encode(const unsigned char *in,  unsigned long inlen,
                        unsigned char *out, unsigned long *outlen)
{
   unsigned long i, len2, leven;
   unsigned char *p;

   LTC_ARGCHK(in     != NULL);
   LTC_ARGCHK(out    != NULL);
   LTC_ARGCHK(outlen != NULL);

   /* valid output size ? */
   len2 = 4 * ((inlen + 2) / 3);
   if (*outlen < len2 + 1) {
      *outlen = len2 + 1;
      return CRYPT_BUFFER_OVERFLOW;
   }
   p = out;
   leven = 3*(inlen / 3);
   for (i = 0; i < leven; i += 3) {
       *p++ = codes[(in[0] >> 2) & 0x3F];
       *p++ = codes[(((in[0] & 3) << 4) + (in[1] >> 4)) & 0x3F];
       *p++ = codes[(((in[1] & 0xf) << 2) + (in[2] >> 6)) & 0x3F];
       *p++ = codes[in[2] & 0x3F];
       in += 3;
   }
   /* Pad it if necessary...  */
   if (i < inlen) {
       unsigned a = in[0];
       unsigned b = (i+1 < inlen) ? in[1] : 0;

       *p++ = codes[(a >> 2) & 0x3F];
       *p++ = codes[(((a & 3) << 4) + (b >> 4)) & 0x3F];
       *p++ = (i+1 < inlen) ? codes[(((b & 0xf) << 2)) & 0x3F] : '=';
       *p++ = '=';
   }

   /* append a NULL byte */
   *p = '\0';

   /* return ok */
   *outlen = p - out;
   return CRYPT_OK;
}

static const unsigned char map[256] = {
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
255, 255, 255, 255, 255, 255, 255,  62, 255, 255, 255,  63,
52,  53,  54,  55,  56,  57,  58,  59,  60,  61, 255, 255,
255, 254, 255, 255, 255,   0,   1,   2,   3,   4,   5,   6,
  7,   8,   9,  10,  11,  12,  13,  14,  15,  16,  17,  18,
19,  20,  21,  22,  23,  24,  25, 255, 255, 255, 255, 255,
255,  26,  27,  28,  29,  30,  31,  32,  33,  34,  35,  36,
37,  38,  39,  40,  41,  42,  43,  44,  45,  46,  47,  48,
49,  50,  51, 255, 255, 255, 255, 255, 255, 255, 255, 255,
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
255, 255, 255, 255 };

/**
   base64 decode a block of memory
   @param in       The base64 data to decode
   @param inlen    The length of the base64 data
   @param out      [out] The destination of the binary decoded data
   @param outlen   [in/out] The max size and resulting size of the decoded data
   @return CRYPT_OK if successful
*/
int base64_decode(const unsigned char *in,  unsigned long inlen,
                        unsigned char *out, unsigned long *outlen)
{
   unsigned long t, x, y, z;
   unsigned char c;
   int           g;

   LTC_ARGCHK(in     != NULL);
   LTC_ARGCHK(out    != NULL);
   LTC_ARGCHK(outlen != NULL);

   g = 3;
   for (x = y = z = t = 0; x < inlen; x++) {
       c = map[in[x]&0xFF];
       if (c == 255) continue;
       /* the final = symbols are read and used to trim the remaining bytes */
       if (c == 254) {
          c = 0;
          /* prevent g < 0 which would potentially allow an overflow later */
          if (--g < 0) {
             return CRYPT_INVALID_PACKET;
          }
       } else if (g != 3) {
          /* we only allow = to be at the end */
          return CRYPT_INVALID_PACKET;
       }

       t = (t<<6)|c;

       if (++y == 4) {
          if (z + g > *outlen) {
             return CRYPT_BUFFER_OVERFLOW;
          }
          out[z++] = (unsigned char)((t>>16)&255);
          if (g > 1) out[z++] = (unsigned char)((t>>8)&255);
          if (g > 2) out[z++] = (unsigned char)(t&255);
          y = t = 0;
       }
   }
   if (y != 0) {
       return CRYPT_INVALID_PACKET;
   }
   *outlen = z;
   return CRYPT_OK;
}


不过上面的代码也有问题,比如数据长度什么的还是用 size_t 类型比较好。

--

[ 本帖最后由 langue 于 2007-2-5 10:39 编辑 ]

论坛徽章:
0
14 [报告]
发表于 2007-02-05 10:49 |只看该作者
echo "blablabla"| openssl base64 -e(-d)
不行么?

论坛徽章:
0
15 [报告]
发表于 2007-02-05 10:50 |只看该作者

回复 14楼 熊猫烧香 的帖子

--

openssl enc -a -(e|d) 也可以。

--

论坛徽章:
0
16 [报告]
发表于 2007-02-05 10:51 |只看该作者
我记的没错的话perl里面也应该有相应的模块吧,不用自己动手编的。

论坛徽章:
0
17 [报告]
发表于 2007-02-05 18:30 |只看该作者
原帖由 思一克 于 2007-2-5 10:08 发表
decode函数中是每次都填BASE表?

呵呵那肯定是要填的不然手功输入那么多字符太不现实了,而且这字符大多数都分开的搞不好掉一两个那就很麻烦
开始写的时候也用的是全局变量,结果中间掉了三个字符RST最后结果老是不对劲调试了半个多少时后来数编码表才发现少了几个字符
回复01072541 (飞冰)
但是我就一个字符串啊就一个参数
这函数需要有2个参数传入啊
int main()
{
        char *p,*q;
        p="xygyqwg";
        char en[20],de[20];
        printf(encode(p,&en));
        printf("\n");
        q=en;
        printf(decode(q,&de));
        printf("\n");
        printf("end");
}

呵呵为了更加方便你只需定义一个指针把指针的地址传给函数的第二个参数就行了
它会为你分配解码后存放字符串的内存
你应该这样写

  1. int main()
  2. {
  3. char *p="xygyqwg";
  4. char *en,*de;
  5. printf("[%s]=[%s]\n",p,encode(p,&en));      
  6. printf("[%s]=[%s]\n",en,decode(en,&de));
  7. /*在后面用完后释放内存就行了*/
  8. }
  9. 结果应该是这样的
  10. minuit@SuSe:~> ./a.out
  11. [xygyqwg]=[eHlneXF3Zw==]
  12. [eHlneXF3Zw==]=[xygyqwg]
  13. minuit@SuSe:~>
复制代码

我想这样子会更好用些.
最后多谢版主加精^_^

论坛徽章:
0
18 [报告]
发表于 2007-02-05 21:27 |只看该作者
原帖由 思一克 于 2007-2-5 10:08 发表
decode函数中是每次都填BASE表?

你的意思应该是这样子吧
看来开始把你的意思想错了^_^

论坛徽章:
0
19 [报告]
发表于 2009-03-04 16:24 |只看该作者
这个程序有问题!编码不正确

论坛徽章:
0
20 [报告]
发表于 2009-03-04 16:43 |只看该作者
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP