AES 加密算法的 C 语言实现

AI权益加码!Claude Code、Cursor等20+工具免费用! 购周边限时加赠Coding Plan Lite,畅享主流AI工具!学习进阶更高效! 阅读详情
      这个AES 的C 语言实现,是从linux 中port 而来,放在这里方便自己日后使用。 很容易把这个code 转为为C++ 的封装。

      aes.h
a#ifndef __AES_H__
#define __AES_H__
#define AES_MIN_KEY_SIZE    16
#define AES_MAX_KEY_SIZE    32

#define AES_BLOCK_SIZE        16

typedef unsigned 
char    u8;
typedef signed 
char    s8;
typedef signed 
short    s16;
typedef unsigned 
short    u16;
typedef    signed 
int    s32;
typedef unsigned 
int    u32;
typedef signed 
long long    s64;
typedef unsigned 
long long    u64;
typedef u16        __le16;
typedef u32        __le32;

#define E_KEY    (&ctx->buf[0])
#define D_KEY    (&ctx->buf[60])
#define le32_to_cpu
#define cpu_to_le32

struct aes_ctx
{
    
int key_length;
    u32 buf[
120];
};


void gen_tabs (void);
int aes_set_key(struct aes_ctx * ctx, const u8 *in_key, unsigned int key_len);
void aes_encrypt(struct aes_ctx * ctx, u8 *outconst u8 *in);
void aes_decrypt(struct aes_ctx * ctx, u8 *outconst u8 *in);
#endif


      aes.c    
#include <stdio.h>
#include 
"aes.h"

static u8 pow_tab[256];
static u8 log_tab[256];
static u8 sbx_tab[256];
static u8 isb_tab[256];

static u32 rco_tab[10];
static u32 ft_tab[4][256];
static u32 it_tab[4][256];
static u32 fl_tab[4][256];
static u32 il_tab[4][256];

static inline u8 byte(const u32 x ,const unsigned n)
{
    
return x >> (n << 3);
}
static inline u32 rol32(u32 word, unsigned int shift)
{
    
return (word << shift) | (word >> (32 - shift));
}
static inline u32 ror32(u32 word, unsigned int shift)
{
    
return (word >> shift) | (word << (32 - shift));
}
static inline u8 f_mult(u8 a , u8 b )
{
    u8 aa 
= log_tab[a];
    u8 cc 
= aa + log_tab[b];
    
return pow_tab[cc + (cc < aa ? 1 : 0 )];
}
#define ff_mult(a,b) (a && b ? f_mult(a,b) : 0 )

#define f_rn(bo, bi, n, k)                    
    bo[n] 
=  ft_tab[0][byte(bi[n],0)] ^                
ft_tab[
1][byte(bi[(n + 1& 3],1)] ^        
ft_tab[
2][byte(bi[(n + 2& 3],2)] ^        
ft_tab[
3][byte(bi[(n + 3& 3],3)] ^ *(k + n)

#define i_rn(bo, bi, n, k)                    
    bo[n] 
=  it_tab[0][byte(bi[n],0)] ^                
it_tab[
1][byte(bi[(n + 3& 3],1)] ^        
it_tab[
2][byte(bi[(n + 2& 3],2)] ^        
it_tab[
3][byte(bi[(n + 1& 3],3)] ^ *(k + n)

#define ls_box(x)                
    ( fl_tab[
0][byte(x, 0)] ^            
      fl_tab[
1][byte(x, 1)] ^            
      fl_tab[
2][byte(x, 2)] ^            
      fl_tab[
3][byte(x, 3)] )

#define f_rl(bo, bi, n, k)                    
    bo[n] 
=  fl_tab[0][byte(bi[n],0)] ^                
fl_tab[
1][byte(bi[(n + 1& 3],1)] ^        
fl_tab[
2][byte(bi[(n + 2& 3],2)] ^        
fl_tab[
3][byte(bi[(n + 3& 3],3)] ^ *(k + n)

#define i_rl(bo, bi, n, k)                    
    bo[n] 
=  il_tab[0][byte(bi[n],0)] ^                
il_tab[
1][byte(bi[(n + 3& 3],1)] ^        
il_tab[
2][byte(bi[(n + 2& 3],2)] ^        
il_tab[
3][byte(bi[(n + 1& 3],3)] ^ *(k + n)

void gen_tabs (void)
{
    u32 i, t;
    u8 p, q;

    
/* log and power tables for GF(2**8) finite field with
     *        0x011b as modular polynomial - the simplest primitive
     *               root is 0x03, used here to generate the tables 
*/

    
for (i = 0, p = 1; i < 256++i) {
        pow_tab[i] 
= (u8) p;
        log_tab[p] 
= (u8) i;

        p 
^= (p << 1^ (p & 0x80 ? 0x01b : 0);
    }

    log_tab[
1= 0;

    
for (i = 0, p = 1; i < 10++i) {
        rco_tab[i] 
= p;

        p 
= (p << 1^ (p & 0x80 ? 0x01b : 0);
    }

    
for (i = 0; i < 256++i) {
        p 
= (i ? pow_tab[255 - log_tab[i]] : 0);
        q 
= ((p >> 7| (p << 1)) ^ ((p >> 6| (p << 2));
        p 
^= 0x63 ^ q ^ ((q >> 6| (q << 2));
        sbx_tab[i] 
= p;
        isb_tab[p] 
= (u8) i;
    }

    
for (i = 0; i < 256++i) {
        p 
= sbx_tab[i];

        t 
= p;
        fl_tab[
0][i] = t;
        fl_tab[
1][i] = rol32(t, 8);
        fl_tab[
2][i] = rol32(t, 16);
        fl_tab[
3][i] = rol32(t, 24);

        t 
= ((u32) ff_mult (2, p)) |
            ((u32) p 
<< 8|
            ((u32) p 
<< 16| ((u32) ff_mult (3, p) << 24);

        ft_tab[
0][i] = t;
        ft_tab[
1][i] = rol32(t, 8);
        ft_tab[
2][i] = rol32(t, 16);
        ft_tab[
3][i] = rol32(t, 24);

        p 
= isb_tab[i];

        t 
= p;
        il_tab[
0][i] = t;
        il_tab[
1][i] = rol32(t, 8);
        il_tab[
2][i] = rol32(t, 16);
        il_tab[
3][i] = rol32(t, 24);

        t 
= ((u32) ff_mult (14, p)) |
            ((u32) ff_mult (
9, p) << 8|
            ((u32) ff_mult (
13, p) << 16|
            ((u32) ff_mult (
11, p) << 24);

        it_tab[
0][i] = t;
        it_tab[
1][i] = rol32(t, 8);
        it_tab[
2][i] = rol32(t, 16);
        it_tab[
3][i] = rol32(t, 24);
    }
}

#define star_x(x) (((x) & 0x7f7f7f7f) << 1) ^ ((((x) & 0x80808080) >> 7) * 0x1b)

#define imix_col(y,x)       
    u   
= star_x(x);        
v   
= star_x(u);        
w   
= star_x(v);        
t   
= w ^ (x);          
(y)  
= u ^ v ^ w;        
(y) 
^= ror32(u ^ t,  8^ 
ror32(v 
^ t, 16^ 
ror32(t,
24)

/* initialise the key schedule from the user supplied key */

#define loop4(i)                                    
{   t 
= ror32(t,  8); t = ls_box(t) ^ rco_tab[i];    
    t 
^= E_KEY[4 * i];     E_KEY[4 * i + 4= t;    
    t 
^= E_KEY[4 * i + 1]; E_KEY[4 * i + 5= t;    
    t 
^= E_KEY[4 * i + 2]; E_KEY[4 * i + 6= t;    
    t 
^= E_KEY[4 * i + 3]; E_KEY[4 * i + 7= t;    
}

#define loop6(i)                                    
{   t 
= ror32(t,  8); t = ls_box(t) ^ rco_tab[i];    
    t 
^= E_KEY[6 * i];     E_KEY[6 * i + 6= t;    
    t 
^= E_KEY[6 * i + 1]; E_KEY[6 * i + 7= t;    
    t 
^= E_KEY[6 * i + 2]; E_KEY[6 * i + 8= t;    
    t 
^= E_KEY[6 * i + 3]; E_KEY[6 * i + 9= t;    
    t 
^= E_KEY[6 * i + 4]; E_KEY[6 * i + 10= t;   
    t 
^= E_KEY[6 * i + 5]; E_KEY[6 * i + 11= t;   
}

#define loop8(i)                                    
{   t 
= ror32(t,  8); ; t = ls_box(t) ^ rco_tab[i];  
    t 
^= E_KEY[8 * i];     E_KEY[8 * i + 8= t;    
    t 
^= E_KEY[8 * i + 1]; E_KEY[8 * i + 9= t;    
    t 
^= E_KEY[8 * i + 2]; E_KEY[8 * i + 10= t;   
    t 
^= E_KEY[8 * i + 3]; E_KEY[8 * i + 11= t;   
    t  
= E_KEY[8 * i + 4^ ls_box(t);    
    E_KEY[
8 * i + 12= t;                
    t 
^= E_KEY[8 * i + 5]; E_KEY[8 * i + 13= t;   
    t 
^= E_KEY[8 * i + 6]; E_KEY[8 * i + 14= t;   
    t 
^= E_KEY[8 * i + 7]; E_KEY[8 * i + 15= t;   
}

int aes_set_key(struct aes_ctx * ctx, const u8 *in_key, unsigned int key_len)
{
    
const __le32 *key = (const __le32 *)in_key;
    u32 i, t, u, v, w;

    
if (key_len % 8 || key_len < AES_MIN_KEY_SIZE || key_len > AES_MAX_KEY_SIZE) {
        
return -1;
    }

    ctx
->key_length = key_len;

    E_KEY[
0= le32_to_cpu(key[0]);
    E_KEY[
1= le32_to_cpu(key[1]);
    E_KEY[
2= le32_to_cpu(key[2]);
    E_KEY[
3= le32_to_cpu(key[3]);

    
switch (key_len) {
        
case 16:
            t 
= E_KEY[3];
            
for (i = 0; i < 10++i)
                loop4 (i);
            
break;

        
case 24:
            E_KEY[
4= le32_to_cpu(key[4]);
            t 
= E_KEY[5= le32_to_cpu(key[5]);
            
for (i = 0; i < 8++i)
                loop6 (i);
            
break;

        
case 32:
            E_KEY[
4= le32_to_cpu(key[4]);
            E_KEY[
5= le32_to_cpu(key[5]);
            E_KEY[
6= le32_to_cpu(key[6]);
            t 
= E_KEY[7= le32_to_cpu(key[7]);
            
for (i = 0; i < 7++i)
                loop8 (i);
            
break;
    }

    D_KEY[
0= E_KEY[0];
    D_KEY[
1= E_KEY[1];
    D_KEY[
2= E_KEY[2];
    D_KEY[
3= E_KEY[3];

    
for (i = 4; i < key_len + 24++i) {
        imix_col (D_KEY[i], E_KEY[i]);
    }

    
return 0;
}

/* encrypt a block of text */

#define f_nround(bo, bi, k) 
    f_rn(bo, bi, 
0, k);     
f_rn(bo, bi, 
1, k);     
f_rn(bo, bi, 
2, k);     
f_rn(bo, bi, 
3, k);     
+= 4

#define f_lround(bo, bi, k) 
    f_rl(bo, bi, 
0, k);     
f_rl(bo, bi, 
1, k);     
f_rl(bo, bi, 
2, k);     
f_rl(bo, bi, 
3, k)

void aes_encrypt(struct aes_ctx * ctx, u8 *outconst u8 *in)
{
    
const __le32 *src = (const __le32 *)in;
    __le32 
*dst = (__le32 *)out;
    u32 b0[
4], b1[4];
    
const u32 *kp = E_KEY + 4;

    b0[
0= le32_to_cpu(src[0]) ^ E_KEY[0];
    b0[
1= le32_to_cpu(src[1]) ^ E_KEY[1];
    b0[
2= le32_to_cpu(src[2]) ^ E_KEY[2];
    b0[
3= le32_to_cpu(src[3]) ^ E_KEY[3];

    
if (ctx->key_length > 24) {
        f_nround (b1, b0, kp);
        f_nround (b0, b1, kp);
    }

    
if (ctx->key_length > 16) {
        f_nround (b1, b0, kp);
        f_nround (b0, b1, kp);
    }

    f_nround (b1, b0, kp);
    f_nround (b0, b1, kp);
    f_nround (b1, b0, kp);
    f_nround (b0, b1, kp);
    f_nround (b1, b0, kp);
    f_nround (b0, b1, kp);
    f_nround (b1, b0, kp);
    f_nround (b0, b1, kp);
    f_nround (b1, b0, kp);
    f_lround (b0, b1, kp);

    dst[
0= cpu_to_le32(b0[0]);
    dst[
1= cpu_to_le32(b0[1]);
    dst[
2= cpu_to_le32(b0[2]);
    dst[
3= cpu_to_le32(b0[3]);
}

/* decrypt a block of text */

#define i_nround(bo, bi, k) 
    i_rn(bo, bi, 
0, k);     
i_rn(bo, bi, 
1, k);     
i_rn(bo, bi, 
2, k);     
i_rn(bo, bi, 
3, k);     
-= 4

#define i_lround(bo, bi, k) 
    i_rl(bo, bi, 
0, k);     
i_rl(bo, bi, 
1, k);     
i_rl(bo, bi, 
2, k);     
i_rl(bo, bi, 
3, k)

void aes_decrypt(struct aes_ctx * ctx, u8 *outconst u8 *in)
{
    
const __le32 *src = (const __le32 *)in;
    __le32 
*dst = (__le32 *)out;
    u32 b0[
4], b1[4];
    
const int key_len = ctx->key_length;
    
const u32 *kp = D_KEY + key_len + 20;

    b0[
0= le32_to_cpu(src[0]) ^ E_KEY[key_len + 24];
    b0[
1= le32_to_cpu(src[1]) ^ E_KEY[key_len + 25];
    b0[
2= le32_to_cpu(src[2]) ^ E_KEY[key_len + 26];
    b0[
3= le32_to_cpu(src[3]) ^ E_KEY[key_len + 27];

    
if (key_len > 24) {
        i_nround (b1, b0, kp);
        i_nround (b0, b1, kp);
    }

    
if (key_len > 16) {
        i_nround (b1, b0, kp);
        i_nround (b0, b1, kp);
    }

    i_nround (b1, b0, kp);
    i_nround (b0, b1, kp);
    i_nround (b1, b0, kp);
    i_nround (b0, b1, kp);
    i_nround (b1, b0, kp);
    i_nround (b0, b1, kp);
    i_nround (b1, b0, kp);
    i_nround (b0, b1, kp);
    i_nround (b1, b0, kp);
    i_lround (b0, b1, kp);

    dst[
0= cpu_to_le32(b0[0]);
    dst[
1= cpu_to_le32(b0[1]);
    dst[
2= cpu_to_le32(b0[2]);
    dst[
3= cpu_to_le32(b0[3]);
}


      testaes.c  
#include <stdio.h>
#include 
<string.h>
#include 
"aes.h"


void output(unsigned char * p)
{
    
int i = 0 ;
    
for(i = 0 ; p[i] ; i ++)
    {
        
if(i && i % 16 == 0 ) printf(" ");
        printf(
" 0x%02x ", p[i]);
    }
    printf(
" ");
}
int main(int argc, char * argv[])
{
    
char szbuf[1024], sztmp[1024];;
    
char *pkey = "iamvingo and live";
    
struct aes_ctx  aes;
    
int len ;

    gen_tabs();
    
if(aes_set_key(&aes, pkey , 16!= 0) {
        printf(
"can't set key : %s ",pkey);
        
return 0;
    }
    printf(
"Please Input string to encrypt : ");
    
while(gets(szbuf) > 0 )
    {
        len 
= strlen(szbuf);
        szbuf[len] 
= '';
        printf(
"Input is : %s ",szbuf);
        aes_encrypt(
&aes,sztmp,szbuf);
        printf(
"Encryp Result is :  ");
        output(sztmp);
        aes_decrypt(
&aes,szbuf,sztmp);
        printf(
"Descrpy Result is : %s ", szbuf);
        printf(
"Please Input string to encrypt : ");
    }

    
return 0;
}

C语言实现AES算法加密/解密算法---以前写的,整理下 自已写的,代码质量肯定不是很高,存在优化空间是肯定的,可能也存在隐藏的漏洞。     以下代码侧重于对数据的加密和解密的算法部分,其他部分的问题没处理,仅供参考。   编译器用的是:C-Free 5.0     直接源代码: //AES #include #include #include #include #include using name 阅读详情

相关推荐

C语言 AES算法 加密解密

C语言 实现 AES 128 位加密解密 1、调用函数 #include "stdio.h" #include "stdlib.h" #include <string.h> #include "aes.h" extern OL_APITABLE_T *AP_interface; typedef struct{ uint32_t eK[44], dK[44]; // encKey, decKey int Nr; // 10 rounds }AesKey; #d

zhangfls的博客 4195

AES算法描述及C语言实现

前言 AES算法是当前最流行的对称加密算法,也是一种分组加密算法,分组密码就是把明文分为固定长度的一组一组,每次加密一组数据,直到加密完整个明文数据。AES算法根据分组长度可以分为AES128, AES192,AES256,其所要求的秘钥长度和加密轮数也各不相同。鉴于这三种模式的算法在本质上没有区别,所以本文主要介绍AES-128(数据分组为16字节,秘钥长度为16字节,加密轮数为10轮),并给...

彼此当年少,莫负好时光 9万+

分组密码算法AES的C/C++编程实现

实验过程中,意识到要实现完整地AES流程是相对十分复杂的,要提前对密钥进行密钥扩展,将明文转化成十六进制变为矩阵,加密过程中,先用初始密钥进行异或,再做九轮字节代换、行移位、列混合;AES加密过程先是明文经过初始化变换,其次再经过九轮循环运算,每一次循环运算都要依次进行字节代换、行移位、列混合和轮密钥加,九轮循环运算结束后,再进行一次最终轮运算,这一轮与前面的九轮的区别除了不进行列混合,其余的不变,也即是最后一轮依次进行字节代换、行移位和轮密钥加,经过这一步骤得到的即为密文。行移位,一个比较简单的置换;

m0_63002183的博客 5425

C语言 AES加解密

AES加解密

Genven_Liang的博客 1万+

C语言项目:实现AES加密算法

本文还有配套的精品资源,点击获取 简介:AES加密算法,即高级加密标准,是一种广泛使用的对称加密算法,以其速度快、安全性高和易于实现而著称。本项目介绍了如何在C语言中从头实现AES加密,包括密钥初始化、密钥扩展、数据预处理以及加密和解密的过程。C语言因其实用性和底层控制能力,成为了编写高效加密代码的优选语言。在该项目中,还探讨了如何使用如 libcrypto ...

weixin_42589700的博客 3965

aes加密c语言实现,基于C语言实现aes256加密算法示例

本文实例讲述了基于C语言实现aes256加密算法

m0_37242634的博客 849

c 语言aes算法,AES 加密算法的 C 语言实现

#include<stdio.h>#include"aes.h"staticu8pow_tab[256];staticu8log_tab[256];staticu8sbx_tab[256];staticu8isb_tab[256];staticu32rco_tab[10];staticu32ft_tab[4][256];staticu32it_tab[4][256];st...

weixin_34990053的博客 2694

C语言实现AES加密算法及应用

AES(Advanced Encryption Standard)算法,即高级加密标准,是目前广泛使用的对称加密算法之一。它由Joan Daemen和Vincent Rijmen设计,被选为美国国家标准与技术研究院(NIST)的加密标准。AES算法能够提供强大的安全性,并且通过优化,可应用于多种软硬件环境中。AES(高级加密标准)是美国国家标准技术研究所(NIST)采用的一种对称密钥加密算法,旨在替代过时的DES算法。其重要性体现在广泛应用于网络通信、数据存储和硬件加密等多个领域。

weixin_36074800的博客 1301

C语言实现AES_ECB加密算法详解

高级加密标准(AES)是一种广泛应用于现代信息安全领域的对称密钥加密算法。它由美国国家标准与技术研究院(NIST)于2001年正式发布,并迅速成为行业标准。AES算法是取代老旧的DES(数据加密标准)而设计,旨在提供更高级别的安全保护。ECB(Electronic Codebook,电子密码本)模式是AES加密中最简单的工作模式。在这种模式下,明文直接与密钥进行运算,每一块明文独立加密,结果是对应的密文块。

weixin_33610780的博客 1251

AES加密算法C语言实现

AES加密算法C语言实现 去发现同类优质开源项目:https://gitcode.com/ 简介 本仓库提供了一个AES加密算法的C语言实现,包含完整的测试代码,可以直接使用。该实现提供了加密和解密两个接口,方便用户直接将其添加到工程中使用。代码采用纯C语言编写,具有良好的可移植性。 功能特点 AES加密算法实现AES(Advanced Encryption Standard)加密算法,支持...

gitblog_09812的博客 766

aes加密算法c 语言实现,AES加密算法c语言实现代码

AES加密算法c语言实现代码#include "stdio.h"#include "memory.h"#include "time.h"#include "stdlib.h"#define PLAIN_FILE_OPEN_ERROR -1#define KEY_FILE_OPEN_ERROR -2#define CIPHER_FILE_OPEN_ERROR -3#define OK 1typede...

weixin_39900180的博客 1312

AES加密算法C语言实现:项目推荐文章

AES加密算法C语言实现:项目推荐文章 去发现同类优质开源项目:https://gitcode.com/ AES加密算法C语言实现:项目的核心功能/场景 AES加密算法C语言实现是一款专注于数据加密的核心工具,适用于确保数据传输的安全性和完整性。 项目介绍 在现代信息社会,数据安全已成为至关重要的议题。AES加密算法C语言实现项目,提供了一种高效的解决方案。AES(高级加密标准)是一种对称加密算法...

gitblog_06731的博客 641

高效安全的AES加密算法C语言实现

高效安全的AES加密算法C语言实现 去发现同类优质开源项目:https://gitcode.com/ 项目介绍 在当今信息安全日益重要的时代,数据加密成为了保护隐私和数据完整性的关键手段。AES(Advanced Encryption Standard)加密算法因其高安全性和广泛的应用场景,成为了加密领域的标准之一。本项目提供了一个高效且易于集成的AES加密算法的C语言实现,旨在为开发者提供一个可...

gitblog_09748的博客 1327

aes算法的C语言实现代码,AES加密算法c语言实现代码

AES加密算法c语言实现代码#include "stdio.h"#include "memory.h"#include "time.h"#include "stdlib.h"……#include "stdio.h"#include "memory.h"#include "time.h"#include "stdlib.h"#define PLAIN_FILE_OPEN_ERROR -1#defin...

weixin_28221501的博客 1376

aes子密钥生成c语言_AES加密算法c语言实现代码.pdf

AES加密算法c语言实现代码#include "stdio.h"#include "memory.h"#include "time.h"#include "stdlib.h"#define PLAIN_FILE_OPEN_ERROR -1#define KEY_FILE_OPEN_ERROR -2#define CIPHER_FILE_OPEN_ERROR -3#define OK 1typede...

weixin_39742727的博客 384

128位AES加密算法C语言实现

128位AES加密算法C语言实现 去发现同类优质开源项目:https://gitcode.com/ 项目描述 本项目提供了一个用C语言实现的128位AES加密算法。该实现可以运行在Java的JNI(Java Native Interface)中,适用于需要在Java环境中使用AES加密的场景。代码中包含了AES加密算法的核心实现,包括密钥生成、加密和解密过程。 功能特性 AES加密算法实现:支持...

gitblog_09737的博客 647
上一篇: 如何编写从M中选N的组合数程序,一个不用递归方法设计,一个用递归方法设计
下一篇: Firefox 内存使用的一些优化
free2o
博客等级 码龄19年 59粉丝 97原创
评论 8
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值