diff options
author | Marcus Brinkmann <[email protected]> | 2017-11-25 20:22:57 +0100 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2017-11-25 20:22:57 +0100 |
commit | 34aa73d0f9c3bf817a0a46889206003f0becd3f1 (patch) | |
tree | 18b9858383756fb12727d7cbed61d6b9ace0fd39 /src/lib/compression/compression.h | |
parent | c23eb5eb3463459654e0f6601a3b2304eb2076ee (diff) |
Add create and create_or_throw factories for Compression_Algorithm and Decompression_Algorithm.
Diffstat (limited to 'src/lib/compression/compression.h')
-rw-r--r-- | src/lib/compression/compression.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/lib/compression/compression.h b/src/lib/compression/compression.h index 2ebde3f2f..403b335e1 100644 --- a/src/lib/compression/compression.h +++ b/src/lib/compression/compression.h @@ -20,6 +20,22 @@ class BOTAN_PUBLIC_API(2,0) Compression_Algorithm { public: /** + * Create an instance based on a name, or return null if the + * algo/provider combination cannot be found. If provider is + * empty then best available is chosen. + */ + static std::unique_ptr<Compression_Algorithm> + create(const std::string& algo_spec); + + /** + * Create an instance based on a name + * @param algo_spec algorithm name + * Throws Lookup_Error if not not found. + */ + static std::unique_ptr<Compression_Algorithm> + create_or_throw(const std::string& algo_spec); + + /** * Begin compressing. Most compression algorithms offer a tunable * time/compression tradeoff parameter generally represented by * an integer in the range of 1 to 9. @@ -66,6 +82,22 @@ class BOTAN_PUBLIC_API(2,0) Decompression_Algorithm { public: /** + * Create an instance based on a name, or return null if the + * algo/provider combination cannot be found. If provider is + * empty then best available is chosen. + */ + static std::unique_ptr<Decompression_Algorithm> + create(const std::string& algo_spec); + + /** + * Create an instance based on a name + * @param algo_spec algorithm name + * Throws Lookup_Error if not not found. + */ + static std::unique_ptr<Decompression_Algorithm> + create_or_throw(const std::string& algo_spec); + + /** * Begin decompressing. * Decompression does not support levels, as compression does. */ |