aboutsummaryrefslogtreecommitdiffstats
path: root/doc/manual
diff options
context:
space:
mode:
authorlloyd <[email protected]>2014-11-05 12:00:24 +0000
committerlloyd <[email protected]>2014-11-05 12:00:24 +0000
commit4f474481f46bffc095ae104485b8da95bcb03973 (patch)
tree2da1bf58bdce2a2e9a1a8a6f8d27dbdb3a87e174 /doc/manual
parentf78e5e3fbd87d2e903f5ff4a230b65ac6d44f281 (diff)
Replace Transformatio::nstart with start_raw so we can do a full set
of overloads in the base class with the same name.
Diffstat (limited to 'doc/manual')
-rw-r--r--doc/manual/aead.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual/aead.rst b/doc/manual/aead.rst
index dbd06bbe1..a5c60c14b 100644
--- a/doc/manual/aead.rst
+++ b/doc/manual/aead.rst
@@ -35,7 +35,7 @@ AEAD modes currently available include GCM, OCB, and EAX. All three use a
function more than once, even across multiple calls to :cpp:func:`start`
and :cpp:func:`finish`.
- .. cpp:function:: secure_vector<byte> start(const byte nonce[], size_t nonce_len)
+ .. cpp:function:: void start(const byte nonce[], size_t nonce_len)
Start processing a message, using *nonce* as the unique per-message
value.