Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:include\crypto\aead.h Create Date:2022-07-28 06:46:56
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:aead_request_alloc() - allocate request data structure*@tfm: cipher handle to be registered with the request*@gfp: memory allocation flag that is handed to kmalloc by the API call.* Allocate the request data structure that must be used with the AEAD

Proto:static inline struct aead_request *aead_request_alloc(struct crypto_aead *tfm, gfp_t gfp)

Type:struct aead_request

Parameter:

TypeParameterName
struct crypto_aead *tfm
gfp_tgfp
398  req = kmalloc( size of req + rypto_aead_reqsize() - obtain size of the request data structure*@tfm: cipher handle* Return: number of bytes, gfp)
400  If Value is more likely to compile time(req) Then aead_request_set_tfm() - update cipher handle reference in request*@req: request handle to be modified*@tfm: cipher handle that shall be added to the request handle* Allow the caller to replace the existing aead handle in the request
403  Return req
Caller
NameDescribe
big_key_cryptEncrypt/decrypt big_key data