diff options
author | Jack Lloyd <[email protected]> | 2017-11-14 20:58:18 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-11-14 20:58:18 -0500 |
commit | 122ceb41f0366a48e84eac3e69e940db2a00eb28 (patch) | |
tree | 4a75edb73356b723a192e75b0daca20ceb75893b /doc/manual/hash.rst | |
parent | f66fd9c12ff7d64c925e73be12a27135790994c3 (diff) |
Update manual to avoid use of old integer typedefs.
Diffstat (limited to 'doc/manual/hash.rst')
-rw-r--r-- | doc/manual/hash.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/manual/hash.rst b/doc/manual/hash.rst index fb711fa8d..80eefbe21 100644 --- a/doc/manual/hash.rst +++ b/doc/manual/hash.rst @@ -15,17 +15,17 @@ A Botan :cpp:class:`BufferedComputation` is split into three stages: Return the size of the output of this function. - .. cpp:function:: void update(const byte* input, size_t length) + .. cpp:function:: void update(const uint8_t* input, size_t length) - .. cpp:function:: void update(byte input) + .. cpp:function:: void update(uint8_t input) .. cpp:function:: void update(const std::string& input) Updates the computation with *input*. - .. cpp:function:: void final(byte* out) + .. cpp:function:: void final(uint8_t* out) - .. cpp:function:: secure_vector<byte> final() + .. cpp:function:: secure_vector<uint8_t> final() Finalize the calculation and place the result into ``out``. For the argument taking an array, exactly ``output_length`` bytes will |