diff options
-rw-r--r-- | src/lib/base/sym_algo.h | 2 | ||||
-rw-r--r-- | src/lib/hash/hash.h | 15 |
2 files changed, 13 insertions, 4 deletions
diff --git a/src/lib/base/sym_algo.h b/src/lib/base/sym_algo.h index c8c93ba34..a3f301b37 100644 --- a/src/lib/base/sym_algo.h +++ b/src/lib/base/sym_algo.h @@ -86,7 +86,7 @@ class BOTAN_DLL SymmetricAlgorithm key_schedule(key, length); } - /* + /** * @return the algorithm name */ virtual std::string name() const = 0; diff --git a/src/lib/hash/hash.h b/src/lib/hash/hash.h index 08b5d5243..9bc06e953 100644 --- a/src/lib/hash/hash.h +++ b/src/lib/hash/hash.h @@ -24,14 +24,17 @@ class BOTAN_DLL HashFunction : public Buffered_Computation /** * Create an instance based on a name - * Will return a null pointer if the algo/provider combination cannot - * be found. If provider is empty then best available is chosen. + * If provider is empty then best available is chosen. + * @param algo_spec algorithm name + * @param provider provider implementation to choose + * @return a null pointer if the algo/provider combination cannot be found */ static std::unique_ptr<HashFunction> create(const std::string& algo_spec, const std::string& provider = ""); /** - * Returns the list of available providers for this algorithm, empty if not available + * @return list of available providers for this algorithm, empty if not available + * @param algo_spec algorithm name */ static std::vector<std::string> providers(const std::string& algo_spec); @@ -50,8 +53,14 @@ class BOTAN_DLL HashFunction : public Buffered_Computation virtual ~HashFunction(); + /** + * Reset the state. + */ virtual void clear() = 0; + /** + * @return the hash function name + */ virtual std::string name() const = 0; /** |