aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/kdf/prf_x942/prf_x942.h
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2016-11-16 17:04:48 -0500
committerJack Lloyd <[email protected]>2016-11-16 17:04:48 -0500
commitb9d4052012abd077556d987204e64de31f15fbc1 (patch)
tree278e060c05fe2b76fc5f449a5d1caf837501ecba /src/lib/kdf/prf_x942/prf_x942.h
parent124f4fe26706572c439f603c802da2726f5651de (diff)
parent10b8c8e8ad16a3c37a4a6911f2c0e8972c711377 (diff)
Merge GH #727 Tests for KDF::name
Diffstat (limited to 'src/lib/kdf/prf_x942/prf_x942.h')
-rw-r--r--src/lib/kdf/prf_x942/prf_x942.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/kdf/prf_x942/prf_x942.h b/src/lib/kdf/prf_x942/prf_x942.h
index afe56de80..2c02f3b9e 100644
--- a/src/lib/kdf/prf_x942/prf_x942.h
+++ b/src/lib/kdf/prf_x942/prf_x942.h
@@ -18,7 +18,7 @@ namespace Botan {
class BOTAN_DLL X942_PRF final : public KDF
{
public:
- std::string name() const override { return "X942_PRF(" + m_key_wrap_oid + ")"; }
+ std::string name() const override { return "X9.42-PRF(" + m_key_wrap_oid + ")"; }
KDF* clone() const override { return new X942_PRF(m_key_wrap_oid); }