]> git.ipfire.org Git - thirdparty/hostap.git/blame - src/crypto/fips_prf_nss.c
Remove the GPL notification from files contributed by Jouni Malinen
[thirdparty/hostap.git] / src / crypto / fips_prf_nss.c
CommitLineData
289ffc2b
JM
1/*
2 * FIPS 186-2 PRF for NSS
3 * Copyright (c) 2009, Jouni Malinen <j@w1.fi>
4 *
0f3d578e
JM
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
289ffc2b
JM
7 */
8
9#include "includes.h"
10#include <openssl/sha.h>
11
12#include "common.h"
13#include "crypto.h"
14
15
16int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen)
17{
18 return -1;
19}