rsa 公 填充模式的_RSA填充方式

// RSA 加密算法填充方式.

// memcpy(目的地址,原地址,长度);

// 私钥加密的填充 01 ,使用oxFF 填充.

int RSA_padding_add_PKCS1_type_1(unsigned char *to, int tlen,

const unsigned char *from, int flen)

{

int j;

unsigned char *p;

if (flen > (tlen - RSA_PKCS1_PADDING_SIZE)) {

RSAerr(RSA_F_RSA_PADDING_ADD_PKCS1_TYPE_1,

RSA_R_DATA_TOO_LARGE_FOR_KEY_SIZE);

return (0);

}

p = (unsigned char *)to;

*(p++) = 0;

*(p++) = 1; /* Private Key BT (Block Type) */

/* pad out with 0xff data */

j = tlen - 3 - flen;

memset(p, 0xff, j);

p += j;

*(p++) = '\0';

memcpy(p, from, (unsigned int)flen);

return (1);

}

int RSA_padding_check_PKCS1_type_1(unsigned char *to, int tlen,

const unsigned char *from, int flen,

int num)

{

int i, j;

const unsigned char *p;

p = from;

if ((num != (flen + 1)) || (*(p++) != 01)) {

RSAerr(RSA_F_RSA_PADDING_CHECK_PKCS1_TYPE_1,

RSA_R_BLOCK_TYPE_IS_NOT_01);

return (-1);

}

/* scan over padding data */

j = flen - 1; /* one for type. */

for (i = 0; i < j; i++) {

if (*p != 0xff) { /* should decrypt to 0xff */

if (*p == 0) {

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值