Lines Matching refs:input
37 plus some occasional newlines (see below). If the input data length is not a
47 Encoding of binary data is performed in blocks of 48 input bytes (or less for
49 For each 48 byte input block encoded 64 bytes of base64 data
52 bytes of input. If the data length is not divisible by 3 then a full 4 bytes is
53 still output for the final 1 or 2 bytes of input. Similarly a newline character
70 repeatedly to process large amounts of input data. In the event of an error
87 EVP_EncodeBlock() encodes a full block of input data in B<f> and of length
88 B<n> and stores it in B<t>. For every 3 bytes of input provided 4 bytes of
92 example if 16 bytes of input data is provided then 24 bytes of encoded data is
106 Residual input shorter than the internal chunk size will be buffered in B<ctx>
114 end-of-input, subsequent bytes are not buffered, and the return value will be
115 0 to indicate that the end of the base64 input has been detected.
116 The soft end-of-input, if present, MUST occur after a multiple of 4 valid base64
117 input bytes.
118 The soft end-of-input condition is not remembered in B<ctx>, it is up to the
128 soft end-of-input (B<->) character, and therefore no more input data is
147 characters or padding (only at the tail of the input) and its length MUST be
149 For every 4 input bytes exactly 3 output bytes will be produced.