Linux加密框架crypto crypto_alg|cipher_alg数据结构|AES例子

  • 加密框架将算法的属性抽象为算法说明数据结构struct crypto_alg,加密框架中的每一个算法(基础算法和衍生算法)都表示为一个算法说明数据结构的实例,因此将struct crypto_alg称为通用算法说明数据结构
  • 后续章节中如无特殊说明,算法说明数据结构和通用算法数据结构均指的是struct crypto_alg
  • crypto.h - include/linux/crypto.h - Linux source code (v5.15.11) - Bootlin
/*** struct crypto_alg - definition of a cryptograpic cipher algorithm* @cra_flags: Flags describing this transformation. See include/linux/crypto.h*	       CRYPTO_ALG_* flags for the flags which go in here. Those are*	       used for fine-tuning the description of the transformation*	       algorithm.* @cra_blocksize: Minimum block size of this transformation. The size in bytes*		   of the smallest possible unit which can be transformed with*		   this algorithm. The users must respect this value.*		   In case of HASH transformation, it is possible for a smaller*		   block than @cra_blocksize to be passed to the crypto API for*		   transformation, in case of any other transformation type, an* 		   error will be returned upon any attempt to transform smaller*		   than @cra_blocksize chunks.* @cra_ctxsize: Size of the operational context of the transformation. This*		 value informs the kernel crypto API about the memory size*		 needed to be allocated for the transformation context.* @cra_alignmask: Alignment mask for the input and output data buffer. The data*		   buffer containing the input data for the algorithm must be*		   aligned to this alignment mask. The data buffer for the*		   output data must be aligned to this alignment mask. Note that*		   the Crypto API will do the re-alignment in software, but*		   only under special conditions and there is a performance hit.*		   The re-alignment happens at these occasions for different*		   @cra_u types: cipher -- For both input data and output data*		   buffer; ahash -- For output hash destination buf; shash --*		   For output hash destination buf.*		   This is needed on hardware which is flawed by design and*		   cannot pick data from arbitrary addresses.* @cra_priority: Priority of this transformation implementation. In case*		  multiple transformations with same @cra_name are available to*		  the Crypto API, the kernel will use the one with highest*		  @cra_priority.* @cra_name: Generic name (usable by multiple implementations) of the*	      transformation algorithm. This is the name of the transformation*	      itself. This field is used by the kernel when looking up the*	      providers of particular transformation.* @cra_driver_name: Unique name of the transformation provider. This is the*		     name of the provider of the transformation. This can be any*		     arbitrary value, but in the usual case, this contains the*		     name of the chip or provider and the name of the*		     transformation algorithm.* @cra_type: Type of the cryptographic transformation. This is a pointer to*	      struct crypto_type, which implements callbacks common for all*	      transformation types. There are multiple options, such as*	      &crypto_skcipher_type, &crypto_ahash_type, &crypto_rng_type.*	      This field might be empty. In that case, there are no common*	      callbacks. This is the case for: cipher, compress, shash.* @cra_u: Callbacks implementing the transformation. This is a union of*	   multiple structures. Depending on the type of transformation selected*	   by @cra_type and @cra_flags above, the associated structure must be*	   filled with callbacks. This field might be empty. This is the case*	   for ahash, shash.* @cra_init: Initialize the cryptographic transformation object. This function*	      is used to initialize the cryptographic transformation object.*	      This function is called only once at the instantiation time, right*	      after the transformation context was allocated. In case the*	      cryptographic hardware has some special requirements which need to*	      be handled by software, this function shall check for the precise*	      requirement of the transformation and put any software fallbacks*	      in place.* @cra_exit: Deinitialize the cryptographic transformation object. This is a*	      counterpart to @cra_init, used to remove various changes set in*	      @cra_init.* @cra_u.cipher: Union member which contains a single-block symmetric cipher*		  definition. See @struct @cipher_alg.* @cra_u.compress: Union member which contains a (de)compression algorithm.*		    See @struct @compress_alg.* @cra_module: Owner of this transformation implementation. Set to THIS_MODULE* @cra_list: internally used* @cra_users: internally used* @cra_refcnt: internally used* @cra_destroy: internally used** @stats: union of all possible crypto_istat_xxx structures* @stats.aead:		statistics for AEAD algorithm* @stats.akcipher:	statistics for akcipher algorithm* @stats.cipher:	statistics for cipher algorithm* @stats.compress:	statistics for compress algorithm* @stats.hash:		statistics for hash algorithm* @stats.rng:		statistics for rng algorithm* @stats.kpp:		statistics for KPP algorithm** The struct crypto_alg describes a generic Crypto API algorithm and is common* for all of the transformations. Any variable not documented here shall not* be used by a cipher implementation as it is internal to the Crypto API.*/struct crypto_alg {struct list_head cra_list;struct list_head cra_users;u32 cra_flags;unsigned int cra_blocksize;unsigned int cra_ctxsize;unsigned int cra_alignmask;int cra_priority;atomic_t cra_refcnt;char cra_name[CRYPTO_MAX_ALG_NAME];char cra_driver_name[CRYPTO_MAX_ALG_NAME];const struct crypto_type *cra_type;union {struct ablkcipher_alg ablkcipher;struct aead_alg aead;struct blkcipher_alg blkcipher;struct cipher_alg cipher;struct compress_alg compress;struct rng_alg rng;} cra_u;int (*cra_init)(struct crypto_tfm *tfm);void (*cra_exit)(struct crypto_tfm *tfm);void (*cra_destroy)(struct crypto_alg *alg);struct module *cra_module;
}
struct crypto_alg {struct list_head cra_list;struct list_head cra_users;u32 cra_flags;unsigned int cra_blocksize;unsigned int cra_ctxsize;unsigned int cra_alignmask;int cra_priority;refcount_t cra_refcnt;char cra_name[CRYPTO_MAX_ALG_NAME];char cra_driver_name[CRYPTO_MAX_ALG_NAME];const struct crypto_type *cra_type;union {struct cipher_alg cipher;struct compress_alg compress;} cra_u;int (*cra_init)(struct crypto_tfm *tfm);void (*cra_exit)(struct crypto_tfm *tfm);void (*cra_destroy)(struct crypto_alg *alg);struct module *cra_module;#ifdef CONFIG_CRYPTO_STATSunion {struct crypto_istat_aead aead;struct crypto_istat_akcipher akcipher;struct crypto_istat_cipher cipher;struct crypto_istat_compress compress;struct crypto_istat_hash hash;struct crypto_istat_rng rng;struct crypto_istat_kpp kpp;} stats;
#endif /* CONFIG_CRYPTO_STATS */} CRYPTO_MINALIGN_ATTR;
  •  内核版本 V5.15.1

数据结构struct crypto_alg中各成员变量含义如下所示,其中前缀cra为crypto_alg的缩写

  • crypto_alg是个基类,任何算法都可以基于它派生出衍生类;每个算法都对应着一个struct crypto_alg实例,一般在module_init中调用crypto_register_alg接口将具体的crypto_alg对象添加到crypto_alg_list链表中。
  • 1)cra_list:算法管理链表节点,向加密框架注册算法实际上就是将cra_list添加到全局的算法管理链表的过程,管理算法链表的表头为crypto_alg_list
  • 2)cra_users:算法用户链表表头,将由算法根据算法模板创建的新算法视为本算法的一个用户;此算法被引用的所有crypto_spawn实例链表。
  • 3)cra_flag:算法标志,包括算法状态和算法类型等标志位,其中低4比特表示算法类型;
  • 4)cra_blocksize:算法分组长度,单位:字节;是单个处理数据块大小
  • 5)cra_ctxsize:算法上下文空间大小,单位:字节;为transformation context大小
  • 6)cra_alignmask:算法输入输出数据地址对齐要求屏蔽位,alignmask+1表示地址对齐要求,如算法输入输出数据地址要求4字节对齐,则alignmask=3;
  • 7)cra_priority:算法优先级;
  • 8)cra_refcnt:算法引用计数;
  • 9)cra_name[CRYPTO_MAX_ALG_NAME]:算法名,最多为64个字符;
  • 10)cra_driver_name[CRYPTO_MAX_ALG_NAME]:算法驱动名,最多为64个字符。注册时,如果未指定算法驱动名,则按“算法名-generic”规则定义算法驱动名;
  • 11)cra_type:算法类型,其数据类型为const,因此称之为算法类型常量。如果算法能够提供某种密码服务,必须设置cra_type,并且与cra_flag中的算法类型保持一致;
  • 12)cra_u:算法个性化属性,联合体变量,其各成员变量含义如下:
    • a)ablkcipher:异步块加密算法个性化属性;
    • b)aead:认证加密算法个性化属性;
    • c)blkcipher:块加密算法个性化属性;
    • d)cipher:分组算法个性化属性;
    • e)compress:压缩算法个性化属性;
    • f)rng:伪随机数算法个性化属性;
    • 这里有一个很重要的数据成员cra_u,因为它体现了kernel crypto架构设计者的设计思想:它将四种比较常用的算法类型的处理方式抽象到基类当中,即如果你要添加的算法为这4类,就只需要实现这4类算法所对应的方法,如果不是这4类当中,就需要在基类上做派生,实现特定的crypto_type。具体内核版本不同   差异很大
  • 13)cra_init:算法实例初始化接口,由算法模板使用;
  • 14)cra_exit:算法实例析构接口,由算法模板使用;
  • 15)cra_destroy:算法说明实例的销毁接口,由无驱动的算法说明实例使用,如算法幼虫;
  • 16)cra_module:算法所属的模块,一般为THIS_MODULE,编译时确定。
  • 算法说明数据结构的成员变量分为通用属性成员变量和个性化属性成员变量,通用属性成员变量如cra_list、cra_users、cra_name、cra_driver_name等,个性化属性成员变量指的是联合体成员变量cra_u,包括算法接口和个性化参数等。为方便访问个性化属性成员变量,在crypto.h定义了一系列宏,如下所示。
#define cra_cipher	cra_u.cipher
#define cra_compress	cra_u.compress

请使用手机"扫一扫"x

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/446104.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

python如何运用ols_使用OLS回归(Python,StatsModels,Pandas)预测未来值

我目前正试图在Python中实现一个MLR,我不知道如何去应用我发现的未来值的系数。使用OLS回归(Python,StatsModels,Pandas)预测未来值import pandas as pdimport statsmodels.formula.api as smimport statsmodels.api as sm2TV [230.1, 44.5,…

Linux加密框架 crypto RC4

参考链接 arc4.h Linux加密框架中的主要数据结构(一)_家有一希的博客-CSDN博客 头文件 arc4.h - include/crypto/arc4.h - Linux source code (v5.15.11) - Bootlin实现代码 arc4.c arc4.c - crypto/arc4.c - Linux source code (v5.15.11) - Bootlin…

python读txt转array_python将txt文件读入为np.array的方法

原文件:7.8094,1.0804,5.7632,0.012269,0.008994,-0.003469,-0.79279,-0.064686,0.11635,0.68827,5.7169,7.9329,0.010264,0.003557,-0.011691,-0.57559,-0.56121,原文件数据比较多,是一个125行,45类float数字。代码:# -*- coding…

Linux加密框架 crypto 哈希算法说明 同步哈希shash_alg | 异步哈希 ahash_alg | 通用部分抽象 hash_alg_common

参考链接 Linux加密框架中的主要数据结构(二)_家有一希的博客-CSDN博客 定义 通用算法说明数据结构crypto_alg的联合体成员变量cra_u中包含多种算法的个性化属性,如分组算法、块加密算法、压缩算法、伪随机数算法等,但不包含哈希…

python 列表间隔取值_python list数据等间隔抽取并新建list存储的例子

原始数据如下:[e3cd, e547, e63d, 0ffd, e39b, e539, e5be, 0dd2, e3d6, e52e, e5f8, 0000, e404, e52b, e63d, 0312, e38b]将其分割为4路数据,分别存储在fetal1、fetal2、mother1、ECG的列表中,各列表对齐,不能整除于4的数据舍去…

Linux加密框架 crypto 哈希算法举例 MD5

参考链接 Linux加密框架 crypto 哈希算法说明 同步哈希shash_alg | 异步哈希 ahash_alg | 通用部分抽象 hash_alg_common_CHYabc123456hh的博客-CSDN博客Linux加密框架中的主要数据结构(二)_家有一希的博客-CSDN博客 MD5 md5.h - include/crypto/md5.h …

事务没提交的数据查的出来吗?_“金三银四”面试官:说说事务的ACID,什么是脏读、幻读?...

一、事务事务是数据库管理系统执行过程中的一个逻辑单位,由一个有限的数据库操作序列构成。--摘自百科在MySQL里,事务是在引擎层面实现,比如MyIsam不支持,InnoDB支持面试清单(Java岗):JavaJVM数…

Linux加密框架 crypto 算法模板

参考链接 Linux加密框架中的主要数据结构(三)_家有一希的博客-CSDN博客algapi.h - include/crypto/algapi.h - Linux source code (v5.15.11) - Bootlin 定义 struct crypto_template {struct list_head list;struct hlist_head instances;struct modu…

python找最长的字符串_为Python找到最长重复字符串的有效方法(从Pearls编程)

我的解决方案是基于后缀数组。它是由最长公共前缀的两倍前缀构成的。最坏情况下的复杂度是O(n(logn)^2)。任务”伊利亚特.mb.txt“在我的笔记本上花了4秒钟。代码在函数suffix_array和longest_common_substring中有很好的文档记录。后一个函数很短,可以很容易地修改…

Linux加密框架 crypto 算法模板 CBC模板举例

参考链接 Linux加密框架中的主要数据结构(三)_家有一希的博客-CSDN博客https://blog.csdn.net/CHYabc123456hh/article/details/122194754 CBC算法模板 cbc.c - crypto/cbc.c - Linux source code (v5.15.11) - BootlinCBC算法模板属性 1)CBC算法模板名…

leetcode数组汇总_LeetCode刷题实战43:字符串相乘

算法的重要性,我就不多说了吧,想去大厂,就必须要经过基础知识和业务逻辑面试算法面试。所以,为了提高大家的算法能力,这个公众号后续每天带大家做一道算法题,题目就从LeetCode上面选 !今天和大家…

Linux加密框架 crypto 算法模板 HMAC模板举例

参考链接 Linux加密框架中的主要数据结构(三)_家有一希的博客-CSDN博客Linux加密框架 crypto 算法模板_CHYabc123456hh的博客-CSDN博客 HMAC算法模板 hmac.c - crypto/hmac.c - Linux source code (v5.15.11) - Bootlinhmac.c - crypto/hmac.c - Linux…

判断非负整数是否是3的倍数_五年级数学因数与倍数知识点汇总与解题方法技巧...

在日常教学过程中,我发现孩子们和某些家长对学习数学的方法有一些误区,就是觉着数学,单纯就是逻辑思维,只要多做练习题就能学好,但是不是这样的,低年级的学生,学习数学还是以背诵为主&#xff0…

tcp通讯一次最多能发送多少数据?_关于TCP/IP,必须知道的十个知识点

本文整理了一些TCP/IP协议簇中需要必知必会的十大问题,既是面试高频问题,又是程序员必备基础素养。一、TCP/IP模型TCP/IP协议模型(Transmission Control Protocol/Internet Protocol),包含了一系列构成互联网基础的网络…

Linux内核crypto子系统的调用逻辑

testmgr.c - crypto/testmgr.c - Linux source code (v5.15.11) - Bootlin上述代码是内核内部即crypto子系统对外提供密码服务的测试程序调用流程&#xff1a;crypto API <—> crypto core <—> crypto_register_alg处于用户态的程序想要调用处于内核态的密码算法&…

python成语填空_python定期循环成语?

我有一个工作单位我希望每N秒发生一次.如果我使用简单化minute 60while True:doSomeWork()time.sleep(minute)取决于doSomeWork()花费的时间,实际循环周期将是一分钟加上那个时间.如果doSomeWork()所花费的时间不是确定性的,则工作周期更加难以预测.我想做的就是这样minute 6…

Linux加密框架 crypto算法模板 以及CBC算法模板实例

参考链接 Linux加密框架中的主要数据结构&#xff08;四&#xff09;_家有一希的博客-CSDN博客algapi.h - include/crypto/algapi.h - Linux source code (v5.15.11) - Bootlin struct crypto_instance {struct crypto_alg alg;struct crypto_template *tmpl;union {/* Node i…

tomcat temp 大量 upload 文件_渗透测试之文件上传漏洞总结

文末下载上传环境源码客户端js检查一般都是在网页上写一段javascript脚本&#xff0c;校验上传文件的后缀名&#xff0c;有白名单形式也有黑名单形式。查看源代码可以看到有如下代码对上传文件类型进行了限制&#xff1a;我们可以看到对上传文件类型进行了限制。绕过方法1.我们…

Linux加密框架 crypto算法模板 以及HMAC算法模板实例

HMAC算法模板实例 HMAC算法模板的创建实例的接口是hmac_create函数hmac.c - crypto/hmac.c - Linux source code (v5.15.11) - Bootlin hmac_create输入的参数包括 算法模板 tmpl 和 算法模板实例参数 tbhmac_cretae函数返回的结果为0表示算法模板实例已经创建注册算法模…

python判断密码强度并输出_密码强度判断

[python]代码库def pdsz(cd):nnnn Falsefor c in cd:if c.isnumeric():nnnn Truebreakreturn nnnndef pdzm(cd):nnnn Falsefor c in cd:if c.isupper():nnnn Truebreakreturn nnnndef pdhh(cd):nnnn Falsefor c in cd:if c.islower():nnnn Truebreakreturn nnnndef main(…