Skip to content

KDFGenerator/GeniusKDF/src/KDFGenerator/KDFGenerator.hpp

Key Derivation Function Generator. More...

Classes

Name
class KDFGenerator
KDF Generator class.

Detailed Description

Key Derivation Function Generator.

Date: 2024-01-08 Henrique A. Klein ([email protected])

Source code

#ifndef _KDF_GENERATOR_HPP_
#define _KDF_GENERATOR_HPP_

#include <vector>
#include <string>

class KDFGenerator
{
public:
    enum HashType
    {
        SHA256 = 0,
        KECCAK,
    };

    static std::vector<uint8_t> GenerateKDF( const std::vector<uint8_t> &data, const HashType &type );

private:
};

#endif

Updated on 2026-04-26 at 17:04:52 -0700