免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3359 | 回复: 2
打印 上一主题 下一主题

[函数] i2c_ASN1_BIT_STRING函数实现(openssl加了源代码) [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-05-18 16:13 |只看该作者 |倒序浏览
各位有基于openssl开发的吗?

这个函数的实现实在有点看不太明白。各位有了解这个函数的帮个忙给分析一下。

[ 本帖最后由 gooderfeng 于 2007-5-18 16:43 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2007-05-18 16:32 |只看该作者
它是在a_bitstr.c中定义的,太诡异了函数实现。
函数实现如下
ASN1_STRING_FLAG_BITS_LEFT = ox08
int i2c_ASN1_BIT_STRING(ASN1_BIT_STRING *a, unsigned char **pp)
        {
        int ret,j,bits,len;
        unsigned char *p,*d;

        if (a == NULL) return(0);

        len=a->length;

        if (len > 0)
                {
                if (a->flags & ASN1_STRING_FLAG_BITS_LEFT)
                        {
                        bits=(int)a->flags&0x07;
                        }
                else
                        {
                        for ( ; len > 0; len--)
                                {
                                if (a->data[len-1]) break;
                                }
                        j=a->data[len-1];
                        if      (j & 0x01) bits=0;
                        else if (j & 0x02) bits=1;
                        else if (j & 0x04) bits=2;
                        else if (j & 0x0 bits=3;
                        else if (j & 0x10) bits=4;
                        else if (j & 0x20) bits=5;
                        else if (j & 0x40) bits=6;
                        else if (j & 0x80) bits=7;
                        else bits=0; /* should not happen */
                        }
                }
        else
                bits=0;

        ret=1+len;
        if (pp == NULL) return(ret);

        p= *pp;

        *(p++)=(unsigned char)bits;
        d=a->data;
        memcpy(p,d,len);
        p+=len;
        if (len > 0) p[-1]&=(0xff<<bits);
        *pp=p;
        return(ret);
        }

[ 本帖最后由 gooderfeng 于 2007-5-18 16:44 编辑 ]

论坛徽章:
0
3 [报告]
发表于 2007-05-18 16:44 |只看该作者
大家在看看这个代码写的怎么洋。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP