diff options
author | Jack Lloyd <[email protected]> | 2016-12-31 13:10:47 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-12-31 13:10:47 -0500 |
commit | 656db0a3509706a5a8abc0ce96cf460d82792828 (patch) | |
tree | ea39258f1b8d52f80961225ec8b0bbb24084501b /src/lib | |
parent | 2f9d7b71d3fb99bf63271246537da2c8dd472314 (diff) |
Add a simple test of the all or nothing transform
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/misc/aont/package.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/misc/aont/package.h b/src/lib/misc/aont/package.h index 48d4b44e0..d090e0725 100644 --- a/src/lib/misc/aont/package.h +++ b/src/lib/misc/aont/package.h @@ -16,7 +16,7 @@ namespace Botan { /** * Rivest's Package Tranform * @param rng the random number generator to use -* @param cipher the block cipher to use +* @param cipher the block cipher to use (aont_package takes ownership) * @param input the input data buffer * @param input_len the length of the input data in bytes * @param output the output data buffer (must be at least @@ -29,7 +29,7 @@ void BOTAN_DLL aont_package(RandomNumberGenerator& rng, /** * Rivest's Package Tranform (Inversion) -* @param cipher the block cipher to use +* @param cipher the block cipher to use (aont_package takes ownership) * @param input the input data buffer * @param input_len the length of the input data in bytes * @param output the output data buffer (must be at least |