diff options
Diffstat (limited to 'src/lib/kdf/kdf.h')
-rw-r--r-- | src/lib/kdf/kdf.h | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/src/lib/kdf/kdf.h b/src/lib/kdf/kdf.h index 39e7253f9..0e8f77681 100644 --- a/src/lib/kdf/kdf.h +++ b/src/lib/kdf/kdf.h @@ -1,5 +1,5 @@ /* -* KDF/MGF +* Key Derivation Function interfaces * (C) 1999-2007 Jack Lloyd * * Distributed under the terms of the Botan license @@ -114,18 +114,6 @@ class BOTAN_DLL KDF }; /** -* Mask Generation Function -*/ -class BOTAN_DLL MGF - { - public: - virtual void mask(const byte in[], size_t in_len, - byte out[], size_t out_len) const = 0; - - virtual ~MGF() {} - }; - -/** * Factory method for KDF (key derivation function) * @param algo_spec the name of the KDF to create * @return pointer to newly allocated object of that type |