diff options
Diffstat (limited to 'src/pbe/pbes1')
-rw-r--r-- | src/pbe/pbes1/pbes1.cpp | 6 | ||||
-rw-r--r-- | src/pbe/pbes1/pbes1.h | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/pbe/pbes1/pbes1.cpp b/src/pbe/pbes1/pbes1.cpp index a3e08d679..6e4c3f54d 100644 --- a/src/pbe/pbes1/pbes1.cpp +++ b/src/pbe/pbes1/pbes1.cpp @@ -153,6 +153,12 @@ OID PBE_PKCS5v15::get_oid() const throw Internal_Error("PBE-PKCS5 v1.5: get_oid() has run out of options"); } +std::string PBE_PKCS5v15::name() const + { + return "PBE-PKCS5v15(" + block_cipher->name() + "," + + hash_function->name() + ")"; + } + /* * PKCS#5 v1.5 PBE Constructor */ diff --git a/src/pbe/pbes1/pbes1.h b/src/pbe/pbes1/pbes1.h index d50c01f53..dcce38e24 100644 --- a/src/pbe/pbes1/pbes1.h +++ b/src/pbe/pbes1/pbes1.h @@ -21,6 +21,8 @@ namespace Botan { class BOTAN_DLL PBE_PKCS5v15 : public PBE { public: + std::string name() const; + void write(const byte[], u32bit); void start_msg(); void end_msg(); |