AES简单实现

#include <iostream>
#include <stdio.h>
#include <iomanip>
using namespace std;
typedef unsigned char byte;

//加法
byte add(byte a,byte b)
{
    return a^b;
}

//乘法
byte multiply(byte a,byte b)
{
    //16bit
    unsigned short int res, i, temp;
    res=0,temp=a;
    //乘
    for(i=1; i<=0x80; i<<=1,temp<<=1)
    {
        if(i&b)
        {
            res^=temp;
        }
    }
    //取余
    for(i=0x8000, temp=0x8d80; i>0x80; i>>=1, temp>>=1)
        if(i&res)
            res^=temp;
    return (byte)res;
}
//倍乘
byte xtime(byte a)
{
    if(a&0x80)//最高位为1
    {
        //先左移然后和AES要求多项式对应的二进制 0xb1 取模
        return (a<<1)^0x1b;
    }
    else
    {
        return a<<1;
    }
}
int main()
{
    int a,b;
    int num;
    while(1)
    {
        cout<<"please choose  1.add  2.multiply  3.xtime 4.esc"<<endl;
        cin>>num;
        switch(num)
        {
        case 1:
            cout<<"please enter two Hexadecimal numbers."<<endl;
            cin>>hex>>a;
            cin>>hex>>b;
            printf("%X\n",add(a,b));
            break;
        case 2:
            cout<<"please enter two Hexadecimal numbers."<<endl;
            cin>>hex>>a;
            cin>>hex>>b;
            printf("%X\n",multiply(a,b));
            break;
        case 3:
            cout<<"please enter a Hexadecimal number."<<endl;
            cin>>hex>>a;
            printf("%X\n",xtime(a));
            break;
            //cout<<setiosflags(ios::uppercase)<<hex<<(xtime(a))<<endl;
        case 4:
            goto end;
        default:
            cout<<"enter the wrong number!"<<endl;
        }
    }
    end:
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值