fips_prf_gnutls.c revision 214501
1214501Srpaulo/*
2214501Srpaulo * FIPS 186-2 PRF for libgcrypt
3214501Srpaulo * Copyright (c) 2004-2009, Jouni Malinen <j@w1.fi>
4214501Srpaulo *
5214501Srpaulo * This program is free software; you can redistribute it and/or modify
6214501Srpaulo * it under the terms of the GNU General Public License version 2 as
7214501Srpaulo * published by the Free Software Foundation.
8214501Srpaulo *
9214501Srpaulo * Alternatively, this software may be distributed under the terms of BSD
10214501Srpaulo * license.
11214501Srpaulo *
12214501Srpaulo * See README and COPYING for more details.
13214501Srpaulo */
14214501Srpaulo
15214501Srpaulo#include "includes.h"
16214501Srpaulo#include <gcrypt.h>
17214501Srpaulo
18214501Srpaulo#include "common.h"
19214501Srpaulo#include "crypto.h"
20214501Srpaulo
21214501Srpaulo
22214501Srpauloint fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen)
23214501Srpaulo{
24214501Srpaulo	/* FIX: how to do this with libgcrypt? */
25214501Srpaulo	return -1;
26214501Srpaulo}
27