diff options
author | Jack Lloyd <[email protected]> | 2017-11-25 21:35:52 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-11-25 21:35:52 -0500 |
commit | 55185c7ef97dba397029c818d3144209069cb922 (patch) | |
tree | 2525f9b888d644c314e0ecddba86225f8dceff67 /src/lib/compression/compression.h | |
parent | 2d01cd6c2a75f09e5a680fe57261d82545295f4a (diff) | |
parent | aeeeebbde6aa0108663b42a13087168eb555c1fc (diff) |
Merge #1312 Fix documentation of compression/decompression update function.
Diffstat (limited to 'src/lib/compression/compression.h')
-rw-r--r-- | src/lib/compression/compression.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/compression/compression.h b/src/lib/compression/compression.h index c207b8bdb..f331874cf 100644 --- a/src/lib/compression/compression.h +++ b/src/lib/compression/compression.h @@ -45,7 +45,7 @@ class BOTAN_PUBLIC_API(2,0) Compression_Algorithm virtual void start(size_t comp_level = 0) = 0; /** - * Process some data. Input must be in size update_granularity() uint8_t blocks. + * Process some data. * @param buf in/out parameter which will possibly be resized or swapped * @param offset an offset into blocks to begin processing * @param flush if true the compressor will be told to flush state @@ -102,7 +102,7 @@ class BOTAN_PUBLIC_API(2,0) Decompression_Algorithm virtual void start() = 0; /** - * Process some data. Input must be in size update_granularity() uint8_t blocks. + * Process some data. * @param buf in/out parameter which will possibly be resized or swapped * @param offset an offset into blocks to begin processing */ |