]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - contrib/wpa/src/crypto/fips_prf_cryptoapi.c
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / contrib / wpa / src / crypto / fips_prf_cryptoapi.c
1 /*
2  * FIPS 186-2 PRF for Microsoft CryptoAPI
3  * Copyright (c) 2009, Jouni Malinen <j@w1.fi>
4  *
5  * This software may be distributed under the terms of the BSD license.
6  * See README for more details.
7  */
8
9 #include "includes.h"
10
11 #include "common.h"
12 #include "crypto.h"
13
14
15 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen)
16 {
17         /* FIX: how to do this with CryptoAPI? */
18         return -1;
19 }