aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/pbkdf/pbkdf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/pbkdf/pbkdf.h')
-rw-r--r--src/lib/pbkdf/pbkdf.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/pbkdf/pbkdf.h b/src/lib/pbkdf/pbkdf.h
index 181195dad..7d3bceffc 100644
--- a/src/lib/pbkdf/pbkdf.h
+++ b/src/lib/pbkdf/pbkdf.h
@@ -9,7 +9,6 @@
#define BOTAN_PBKDF_H_
#include <botan/symkey.h>
-#include <botan/exceptn.h>
#include <chrono>
namespace Botan {
@@ -230,10 +229,7 @@ typedef PBKDF S2K;
inline PBKDF* get_pbkdf(const std::string& algo_spec,
const std::string& provider = "")
{
- std::unique_ptr<PBKDF> p(PBKDF::create(algo_spec, provider));
- if(p)
- return p.release();
- throw Algorithm_Not_Found(algo_spec);
+ return PBKDF::create_or_throw(algo_spec, provider).release();
}
inline PBKDF* get_s2k(const std::string& algo_spec)