Coverage Report

Created: 2025-04-11 06:34

/src/botan/build/include/internal/botan/internal/kdf2.h
Line
Count
Source (jump to first uncovered line)
1
/*
2
* KDF2
3
* (C) 1999-2007 Jack Lloyd
4
*
5
* Botan is released under the Simplified BSD License (see license.txt)
6
*/
7
8
#ifndef BOTAN_KDF2_H_
9
#define BOTAN_KDF2_H_
10
11
#include <botan/hash.h>
12
#include <botan/kdf.h>
13
14
namespace Botan {
15
16
/**
17
* KDF2, from IEEE 1363
18
*/
19
class KDF2 final : public KDF {
20
   public:
21
      std::string name() const override;
22
23
      std::unique_ptr<KDF> new_object() const override;
24
25
      /**
26
      * @param hash the hash function to use
27
      */
28
0
      explicit KDF2(std::unique_ptr<HashFunction> hash) : m_hash(std::move(hash)) {}
29
30
   private:
31
      void perform_kdf(std::span<uint8_t> key,
32
                       std::span<const uint8_t> secret,
33
                       std::span<const uint8_t> salt,
34
                       std::span<const uint8_t> label) const override;
35
36
   private:
37
      std::unique_ptr<HashFunction> m_hash;
38
};
39
40
}  // namespace Botan
41
42
#endif