logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

kcapi_cipher_encrypt - encrypt data (synchronous one shot)

Arguments

handle
           [in] cipher handle

       in
           [in] plaintext data buffer

       inlen
           [in] length of in buffer

       iv
           [in] IV to be used for cipher operation

       out
           [out] ciphertext data buffer

       outlen
           [in] length of out buffer

       access
           [in] kernel access type (KCAPI_ACCESS_HEURISTIC - use internal heuristic for fastest kernel access;
           KCAPI_ACCESS_VMSPLICE - use vmsplice access; KCAPI_ACCESS_SENDMSG - sendmsg access)

Author

StephanMueller <smueller@chronox.de>
           Author.

Description

       It is perfectly legal to use the same buffer as the plaintext and ciphertext pointers. That would mean
       that after the encryption operation, the plaintext is overwritten with the ciphertext.

       The memory should be aligned at the page boundary using posix_memalign(sysconf(_SC_PAGESIZE)), If it is
       not aligned at the page boundary, the vmsplice call may not send all data to the kernel.

       The IV buffer must be exactly kcapi_cipher_ivsize bytes in size.

       return number of bytes encrypted upon success; a negative errno-style error code if an error occurred

Name

       kcapi_cipher_encrypt - encrypt data (synchronous one shot)

Synopsis

ssize_tkcapi_cipher_encrypt(structkcapi_handle*handle,constuint8_t*in,size_tinlen,constuint8_t*iv,uint8_t*out,size_toutlen,intaccess);

See Also