aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/kat_pbkdf.cpp
blob: 5d97bf0e96623f2adc46c5e4126a4943dd71a2d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#include "tests.h"

#include <botan/lookup.h>
#include <botan/hex.h>
#include <iostream>
#include <fstream>

using namespace Botan;

size_t test_pbkdf()
   {
   auto test = [](const std::string& input)
      {
      return run_tests(input, "PBKDF", "Output", true,
             [](std::map<std::string, std::string> vec)
             {
             std::unique_ptr<PBKDF> pbkdf(get_pbkdf(vec["PBKDF"]));

             const size_t iterations = to_u32bit(vec["Iterations"]);
             const size_t outlen = to_u32bit(vec["OutputLen"]);
             const auto salt = hex_decode(vec["Salt"]);
             const std::string pass = vec["Passphrase"];

             const auto key = pbkdf->derive_key(outlen, pass,
                                                &salt[0], salt.size(),
                                                iterations).bits_of();
             return hex_encode(key);
             });
      };

   return run_tests_in_dir(TEST_DATA_DIR "pbkdf", test);
   }