'\" t .\" Title: struct akcipher_request .\" Author: .\" Generator: DocBook XSL Stylesheets v1.79.1 .\" Date: January 2017 .\" Manual: Programming Interface .\" Source: Kernel Hackers Manual 4.8.15 .\" Language: English .\" .TH "STRUCT AKCIPHER_REQU" "9" "January 2017" "Kernel Hackers Manual 4\&.8\&." "Programming Interface" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .\" http://bugs.debian.org/507673 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" ----------------------------------------------------------------- .\" * set default formatting .\" ----------------------------------------------------------------- .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) .ad l .\" ----------------------------------------------------------------- .\" * MAIN CONTENT STARTS HERE * .\" ----------------------------------------------------------------- .SH "NAME" struct_akcipher_request \- public key request .SH "SYNOPSIS" .sp .nf struct akcipher_request { struct crypto_async_request base; struct scatterlist * src; struct scatterlist * dst; unsigned int src_len; unsigned int dst_len; void * __ctx[]; }; .fi .SH "MEMBERS" .PP base .RS 4 Common attributes for async crypto requests .RE .PP src .RS 4 Source data .RE .PP dst .RS 4 Destination data .RE .PP src_len .RS 4 Size of the input buffer .RE .PP dst_len .RS 4 Size of the output buffer\&. It needs to be at least as big as the expected result depending on the operation After operation it will be updated with the actual size of the result\&. In case of error where the dst sgl size was insufficient, it will be updated to the size required for the operation\&. .RE .PP __ctx[] .RS 4 Start of private context data .RE .SH "AUTHORS" .PP \fBStephan Mueller\fR <\&smueller@chronox.de\&> .RS 4 Author. .RE .PP \fBMarek Vasut\fR <\&marek@denx.de\&> .RS 4 Author. .RE .SH "COPYRIGHT" .br