KCAPI_CIPHER_DECRYPT(3) | Programming Interface | KCAPI_CIPHER_DECRYPT(3) |
NAME¶
kcapi_cipher_decrypt_aio - decrypt data (asynchronous one shot)
SYNOPSIS¶
ssize_t kcapi_cipher_decrypt_aio(struct kcapi_handle * handle, struct iovec * iniov, struct iovec * outiov, size_t iovlen, const uint8_t * iv, int access);
ARGUMENTS¶
handle
iniov
outiov
iovlen
iv
access
DESCRIPTION¶
The individual scatter-gather list entries are processed with separate invocations of the the given cipher.
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 decrypted upon success; a negative errno-style error code if an error occurred
AUTHOR¶
Stephan Mueller <smueller@chronox.de>
COPYRIGHT¶
March 2023 | libkcapi Manual 1.4.0 |