KCAPI_AKCIPHER_STREA(3) | Programming Interface | KCAPI_AKCIPHER_STREA(3) |
kcapi_akcipher_stream_init_dec - start an decryption operation (stream)
ssize_t kcapi_akcipher_stream_init_dec(struct kcapi_handle * handle, struct iovec * iov, size_t iovlen);
handle
iov
iovlen
A stream decryption operation is started with this call. Multiple successive kcapi_akcipher_stream_update function calls can be invoked to send more plaintext data to be decrypted. The last invocation to supply data must be done with kcapi_akcipher_stream_update_last. The kernel buffers the input until kcapi_akcipher_stream_op picks up the encrypted data. Once plaintext is decrypted during the kcapi_cipher_stream_op it is removed from the kernel buffer.
The function calls of kcapi_akcipher_stream_update and kcapi_akcipher_stream_op can be mixed, even by multiple threads of an application.
return number of bytes sent to the kernel upon success; a negative errno-style error code if an error occurred
Stephan Mueller <smueller@chronox.de>
February 2022 | libkcapi Manual 1.4.0 |