Lines Matching full:will

35 bytes of binary data provided 4 bytes of base 64 encoded data will be produced
37 multiple of 3 then the output data will be padded at the end using the "="
49 final block (which may be less than 48 bytes) will output 4 bytes for every 3
52 will also be output.
60 blocks of data (48 bytes) will be immediately processed and output by this
61 function. Any remainder is held in the B<ctx> object and will be processed by a
65 any remainder). This gives the number of blocks of data that will be processed.
69 EVP_EncodeUpdate() will set B<*outl> to 0 and return 0. On success 1 will be
72 EVP_EncodeFinal() must be called at the end of an encoding operation. It will
74 data will be stored in B<out> and the length of the data written will be stored
76 sufficiently large to accommodate the output data which will never be more than
82 EVP_ENCODE_CTX_num() will return the number of as yet unprocessed bytes still to
87 output data will be produced. If B<n> is not divisible by 3 then the block is
89 divisible by 4. Additionally a NUL terminator character will be added. For
100 function will attempt to decode as much data as possible in 4 byte chunks. Any
102 of unprocessed data (1, 2 or 3 bytes) that remains at the end will be held in
111 line feeds), 3 bytes of binary output data will be produced (or less at the end
116 a multiple of 4 and therefore an error has occurred. The function will return -1
119 EVP_DecodeBlock() will decode the block of B<n> characters of base 64 data
120 contained in B<f> and store the result in B<t>. Any leading whitespace will be
121 trimmed as will any trailing whitespace, newlines, carriage returns or EOF
123 by 4. For every 4 input bytes exactly 3 output bytes will be produced. The
124 output will be padded with 0 bits if necessary to ensure that the output is
125 always 3 bytes for every 4 input bytes. This function will return the length of