fips_prf_gnutls.c revision 214734
150476Speter/*
247857Sbrian * FIPS 186-2 PRF for libgcrypt
347857Sbrian * Copyright (c) 2004-2009, Jouni Malinen <j@w1.fi>
447857Sbrian *
547857Sbrian * This program is free software; you can redistribute it and/or modify
647857Sbrian * it under the terms of the GNU General Public License version 2 as
747857Sbrian * published by the Free Software Foundation.
888078Scjc *
947857Sbrian * Alternatively, this software may be distributed under the terms of BSD
1047857Sbrian * license.
1188078Scjc *
1247857Sbrian * See README and COPYING for more details.
1347857Sbrian */
1488078Scjc
1547857Sbrian#include "includes.h"
1647857Sbrian#include <gcrypt.h>
1747857Sbrian
18#include "common.h"
19#include "crypto.h"
20
21
22int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen)
23{
24	/* FIX: how to do this with libgcrypt? */
25	return -1;
26}
27