diff options
author | Jack Lloyd <[email protected]> | 2016-07-19 14:09:19 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-07-19 14:09:19 -0400 |
commit | 308c7d5eda678566edd26e9ab20edbe772f46363 (patch) | |
tree | c7a0512e05d7510f978e66a29e4eade603176639 /src/lib | |
parent | 3404b86897748307457f16a32dd7492e39564365 (diff) | |
parent | 438d2b28fcc3009ec77a05866ac25a1b49c0ec93 (diff) |
Merge GH #541 More ECIES tests
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/pubkey/ecies/ecies.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/pubkey/ecies/ecies.h b/src/lib/pubkey/ecies/ecies.h index 1008473c9..0bc0bf76e 100644 --- a/src/lib/pubkey/ecies/ecies.h +++ b/src/lib/pubkey/ecies/ecies.h @@ -126,8 +126,6 @@ class BOTAN_DLL ECIES_System_Params : public ECIES_KA_Params * @param dem_key_len length of the key used for the data encryption method * @param mac_spec name of the message authentication code * @param mac_key_len length of the key used for the message authentication code - * @param compression_type format of encoded keys (affects the secret derivation if single_hash_mode is used) - * @param flags options, see documentation of ECIES_Flags */ ECIES_System_Params(const EC_Group& domain, const std::string& kdf_spec, const std::string& dem_algo_spec, size_t dem_key_len, const std::string& mac_spec, size_t mac_key_len); @@ -139,6 +137,8 @@ class BOTAN_DLL ECIES_System_Params : public ECIES_KA_Params * @param dem_key_len length of the key used for the data encryption method * @param mac_spec name of the message authentication code * @param mac_key_len length of the key used for the message authentication code + * @param compression_type format of encoded keys (affects the secret derivation if single_hash_mode is used) + * @param flags options, see documentation of ECIES_Flags */ ECIES_System_Params(const EC_Group& domain, const std::string& kdf_spec, const std::string& dem_algo_spec, size_t dem_key_len, const std::string& mac_spec, size_t mac_key_len, |