class CCL::Security::Crypto::HKDF

#include <cryptobox.h>

class HKDF
{
public:
    // enums

    enum Constants;

    // methods

    static bool deriveKey (
        IStream& derivedKey,
        uint32 derivedKeyLength,
        BlockRef secret,
        BlockRef salt,
        BlockRef info
    );
};